Whta is the maximum file upload size in PHP 5? I am uploading a file of 6MB and get error 1. Thanks.
5 Answers
1 Comment
Marc B
memory_limit has to be > upload_max_filesize as well.
The above missed one setting: post_max_size in php.ini .From php doc: "To upload large files, this value [*post_max_size*] must be larger than upload_max_filesize.
If memory limit is enabled by your configure script, *memory_limit* also affects file uploading. Generally speaking, memory_limit should be larger than post_max_size. "