4

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

2
  • 1
    Are you sure this isn't a script issue and not an HTML5 issue? Commented Sep 17, 2012 at 16:56
  • That's what I'm hoping to find out lol Commented Sep 17, 2012 at 19:26

3 Answers 3

2

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

Sign up to request clarification or add additional context in comments.

2 Comments

Awesome I'll play around with it. Thanks
If the browser won't natively allow more than 20 files, how can a jQuery plugin work around that? edit ah I think it may be the case that there really is no such limit.
1

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.

1 Comment

No I need the photographer to upload the images. I'm not sure how the zip file will work. Thanks though
1

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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.