PHP upload_max_filesize

后端 未结 5 1210
后悔当初
后悔当初 2021-01-27 10:48

I\'ve a problem with php file upload.
In my php.ini \'upload_max_filesize\' is set to 4mb.
When i try to upload a file bigger than that I never get the UPLOAD_ERR_INI_SI

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-27 10:59

    Check these setting in your php.ini also: post_max_size, upload_max_filesize and memory_limit in php.ini. post_max_size should be greater than upload_max_size.

    and if these does not solve problem then check here for more details: http://www.satya-weblog.com/2007/05/php-file-upload-and-download-script.html

提交回复
热议问题