overriding upload_max_filesize

前端 未结 1 1704
礼貌的吻别
礼貌的吻别 2020-11-29 11:07

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_         


        
相关标签:
1条回答
  • 2020-11-29 11:44

    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
    
    0 讨论(0)
提交回复
热议问题