Home > Article > Backend Development > Uploading multiple files in php max_file_uploads limit problem
In PHP programs, we often encounter this problem. When uploading attachments, many attachments, such as pictures, are successfully uploaded, but in fact only 20 attachments exist, or an error is reported and cannot be uploaded.
When editing the album in DEDECMS5.7, I found that as long as more than 20 pictures are saved, an error will occur. The prompt is as follows:
PHP Warning: Maximum number of allowable file uploads has been exceeded in Unknown on line 0
This is because
php 5.2.12 There is max_file_uploads in php.ini for versions above What about 10 pictures?
This is because the Imperial Picture Collection has large pictures and thumbnails. There are 10 pictures, including 20 thumbnails.
Solution:
Modify the value of max_file_uploads:20 in php.ini to a larger value. For example:
max_file_uploads:20
10000, this is enough, haha...
The above is the detailed content of Uploading multiple files in php max_file_uploads limit problem. For more information, please follow other related articles on the PHP Chinese website!