galactic.nucleus
galactic.nucleus

Reputation: 95

Input File Type Skip Some Files

I am selecting 28 files and the form posts only 20 files.

So, how can I increase the number of files selected in html form?

Following is the html code for file input.

<input type="file" class="form-control template-images" name="files[]" multiple>

Upvotes: 1

Views: 28

Answers (1)

cryptichorizon
cryptichorizon

Reputation: 36

Increase the value max-file-uploads settings in your php.ini file:

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

Upvotes: 1

Related Questions