Re: HTML5 Multiple File Upload?

2020-03-03 Thread Ruben Safir
how did you solve this On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote: > Does anyone know if Embperl can handle multiple file uploads from > HTML5? If so, how do you process the different files on the server > side? > > This works in many browsers now, so it would be nice to be able

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Neil Gunton
I use Dropzone.js to achieve the client side multiple file selection: https://www.dropzonejs.com/ It's received on the server side as usual, since the files are uploaded as separate requests, as if they were selected and uploaded one by one. So it might not give you technically full HTML5 "mul

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Ruben Safir
On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote: > I use Dropzone.js to achieve the client side multiple file selection: > > https://www.dropzonejs.com/ Can I host the javascript locally? > > It's received on the server side as usual, since the files are > uploaded as separate requ

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Neil Gunton
On 3/3/20 9:55 AM, Ruben Safir wrote: On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote: I use Dropzone.js to achieve the client side multiple file selection: https://www.dropzonejs.com/ Can I host the javascript locally? Yes It's received on the server side as usual, since the

Re: HTML5 Multiple File Upload?

2020-03-03 Thread Ruben Safir
On Tue, Mar 03, 2020 at 09:56:50AM -0800, Neil Gunton wrote: > On 3/3/20 9:55 AM, Ruben Safir wrote: > >On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote: > >>I use Dropzone.js to achieve the client side multiple file selection: > >> > >>https://www.dropzonejs.com/ > > > >Can I host the j