开发者

PHP: Maximum number of form (FILE) fields

开发者 https://www.devze.com 2023-04-02 05:14 出处:网络
I want to upload 50 files at the same time (well, a clients wants this \'amazing feature\'). However, PHP only processes the first 20 form fields; after that, they just do not exist for PHP.

I want to upload 50 files at the same time (well, a clients wants this 'amazing feature'). However, PHP only processes the first 20 form fields; after that, they just do not exist for PHP.

I've had this problem before but did not document proper开发者_如何学Cly how to solve it. I believe it's a PHP setting, but I can not find it.


In php.ini, change max_file_uploads = 20 to whatever value you need.

Common Pitfalls for file upload in PHP


You need max_file_uploads setting in your php.ini file. Also do check the upload_max_filesize and pos_max_size settings, to be safe :)

0

精彩评论

暂无评论...
验证码 换一张
取 消