Config php ini file for upload files

前端 未结 4 1882
栀梦
栀梦 2021-01-06 18:06

I have a page for upload files, In .htaccess file I have this:

php_value upload_max_filesize 40M
php_value post_max_size 40M

I

4条回答
  •  天命终不由人
    2021-01-06 18:33

    You have memory_limit in your PHP configuration; 54525952 bytes which is 52MB.

    You should configure memory_limit in php.ini or .htaccess or fix memory leak.

提交回复
热议问题