Home  >  Article  >  Backend Development  >  How to break through the max_file_uploads limit of php uploading multiple files

How to break through the max_file_uploads limit of php uploading multiple files

一个新手
一个新手Original
2017-09-06 15:21:241943browse

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 and above version php.ini has max_file_uploads: The default value is 20, that is:

max_file_uploads:20

Approximately It means: A form can only upload a maximum of 20 attachments, but why can only 10 pictures be uploaded to the Empire's picture collection?

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:10000

10000, this is enough, haha...

The above is the detailed content of How to break through the max_file_uploads limit of php uploading multiple files. 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