PDA

View Full Version : Is there a limit for PHP max upload?


shane
02-15-2008, 04:43 AM
Hi,

Do you guys have a limit for PHP max upload size in the server. I want to upload a file of size 8MB. Will this work properly?

SharkSpace_Alex
02-15-2008, 05:00 AM
Hello,

You can increase the PHP max upload size for your account by adding the following to your .htaccess file:

php_value post_max_size "10M"
php_value upload_max_filesize "10M"
php_value max_input_time "120"

The above code will increase the limit to 10 MB, it is not recommended that you go any higher than that.