Status
Not open for further replies.

priviet02

Active Member
747
2008
12
895
hi guys

im doing some testing on a youtube clone software called vshare

now the upload limit when i installed thesoftware is 100mb.....i want it up to 1 gb though


is there anyone who can help me...


thanks i appreciate it
 
1 comment
usually that is from you php configuration.

try to set in your php.ini file:

Code:
max_execution_time = 600
max_input_time = 600
memory_limit = 32M
register_globals = On
post_max_size = 1024M
file_uploads = On
upload_max_filesize = 1024M

or if yo udon't have access to your php.ini file add this to .htaccess:
Code:
php_value max_input_time 600
php_value max_execution_time 600
php_value post_max_size 1024M
 
Status
Not open for further replies.
Back
Top