Maximum upload size in PHP and Apache
Maximum file size upload problems, please help!!!
http://drupal.org/node/157174If you have access to php.ini or you are allowed to use a modified copy of php.ini, add two lines like the following at the end (example for 16MB files)
upload_max_filesize = 16M
post_max_size = 18MIf you can't use a php.ini, then you can add two lines in your .htaccess file
php_value upload_max_filesize 16M
php_value post_max_size 18M[On the Drupal file upload settings page]
you get:
- no more that what upload_max_filesize says
- no more than half of post_max_size
(whichever is smaller)So, the right numbers for up to 32MB files seem to be:
upload_max_filesize = 32M
post_max_size = 64MThis is just an empirical observation without any knowledge of what is going on. Not sure if it applies always.
CogRusty is wonderful.
See also Agaric's quick and drastic increase of file upload limits in PHP.ini.
Maximum file size upload problems, please help!!!
http://drupal.org/node/157174If you have access to php.ini or you are allowed to use a modified copy of php.ini, add two lines like the following at the end (example for 16MB files)
upload_max_filesize = 16M
post_max_size = 18MIf you can't use a php.ini, then you can add two lines in your .htaccess file
php_value upload_max_filesize 16M
php_value post_max_size 18M[On the Drupal file upload settings page]
you get:
- no more that what upload_max_filesize says
- no more than half of post_max_size
(whichever is smaller)So, the right numbers for up to 32MB files seem to be:
upload_max_filesize = 32M
post_max_size = 64MThis is just an empirical observation without any knowledge of what is going on. Not sure if it applies always.
CogRusty is wonderful.
See also Agaric's quick and drastic increase of file upload limits in PHP.ini.
Comments
Stefan explains how the various places for these settings work
Also, if you have access to
Also, if you have access to php.ini, find string "upload_max_filesize = 2M" and change value to your own.
Um...
Can I change the MB for Megabyte to GB for Gigabyte?
Post new comment