Unable to submit more than 20 file type fields in single form submit?

115 views Asked by At

I have to submit 50-100 files in single form submit. I put file types for them but I am getting only 20 files other are not submitting.

Is there any limit in form submission regarding number of file type in a single form submit?

If yes then how can I submit them in single submit?

2

There are 2 answers

0
antihate On BEST ANSWER

Change 'max_file_upload' in your php.ini

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20

OR

place this in top of your script

ini_set('max_file_uploads', 50);
0
Sabari Giri On

use max_file_uploads or change it in php.ini file