Reputation: 123
Is there any way to upload more than 20 files with HTML5 file upload? Currently I am only able to upload 20 files at a time. I need to be able to upload about 100 to 200 images at once.
Thanks
Upvotes: 4
Views: 325
Reputation: 34
Probably, you use PHP. This platform has a limitation on files count in one POST request. It is equal to 20 :) To increase this value you should open php.ini, find max_file_uploads and set it to a large number, e.g. 2000.
Upvotes: 1
Reputation: 57312
you can use the http://blueimp.github.com/jQuery-File-Upload/ file uploader its such a good file uploader
its also very secure since it is using the OWASP and Cross-site Scripting (XSS) also disabled it also prevent arbitrary files
also check this link to know the limit of browsers connection at a time
Upvotes: 2
Reputation: 3082
I'm not sure if this will help you.
But I would suggest uploading a zip and then extracting server side. It will be harder to validate the content though.
Upvotes: 1