Home  >  Article  >  Backend Development  >  Uploading multiple files in php max_file_uploads limit problem

Uploading multiple files in php max_file_uploads limit problem

一个新手
一个新手Original
2017-10-04 09:28:281691browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn