Changing upload_max_filesize on PHP

后端 未结 11 815
星月不相逢
星月不相逢 2020-11-22 16:50

I\'m using PHP 5.3.0 and have encountered something that might be a bug (in which case I\'ll report it) or might be me - so I\'m asking to make sure.

When running th

11条回答
  •  北海茫月
    2020-11-22 17:01

    if you use ini_set on the fly then you will find here http://php.net/manual/en/ini.core.php the information that e.g. upload_max_filesize and post_max_size is not changeable on the fly (PHP_INI_PERDIR).

    Only a php.ini, .htaccess or vhost config change seems to change these variables.

提交回复
热议问题