P priviet02 Active Member 747 2008 12 895 Sep 5, 2009 #1 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
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
C Ccucu Active Member 101 2008 0 70 Sep 11, 2009 #2 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
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