|
/Admin/Apache:
Increase File Upload Limit in php.ini
(Note: php.ini changes apply to *all* PHP apps on the server.)
If you are getting the error:
Upload larger than maximum POST size (post_max_size variable in .htaccess or php.ini)
There is no simple one parameter solution. I found some good posts
here:
http://www.sugarcrm.com/forums/archive/index.php/t-18546.html
http://www.sugarcrm.com/forums/showthread.php?t=1415&highlight=3000000
I made the following changes in /etc/php5/apache2/php.ini:
post_max_size = 300M
upload_max_filesize = 300M
max_execution_time = 3600
max_input_time = 3600
which should present a maximum file upload limit of 300M and a timeout of one hour.
posted at: 22:26 | path: /Admin/Apache | permanent link to this entry