简体   繁体   中英

overriding upload_max_filesize

I am trying to override my upload_max_filesize in php but I still get the value which is in my php.ini file which is 2 mb.

ini_set('upload_max_filesize','30M');
ini_set('post_max_size','30M');
echo("<br>".ini_get('upload_max_filesize')."<br>");

Those settings are not going to have any effect when set via ini_set .

The reason is that PHP needs those values before your script is even executed. When an upload occurs, the target script is executed when the upload is complete, so PHP needs to know the maximum sizes beforehand.

Set them in php.ini , your virtual host config, or in a .htaccess file. A typical .htaccess file would look like this:

php_value post_max_size 30M
php_value upload_max_filesize 30M

You can try below

ini_set('max_execution_time', 9000);
ini_set('memory_limit', '1024M');
ini_set('upload_max_filesize', '30M');
ini_set('post_max_size', '30M');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM