Download multiple files

Is there a way to upload more than 20 files with HTML5 file uploads? Currently, I can only upload 20 files at a time. I need to be able to upload from 100 to 200 images at a time.

thanks

+4
source share
3 answers

you can use http://blueimp.github.com/jQuery-File-Upload/ file downloader, such a good file downloader

its also very safe since it uses OWASP and cross-site scripting (xss) also disabled it also prevent arbitrary files

also check this link to find out the browser connection border at a time

+2
source

I'm not sure if this will help you.

But I would suggest downloading zip and then extracting the server side. However, it will be difficult to verify the contents.

+1
source

Perhaps you are using PHP. This platform has a limit on the number of files in a single 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, for example. 2000.

+1
source

Source: https://habr.com/ru/post/1434659/


All Articles