Reputation: 826
i'm building a website with very simple cms. I built a form already with an input type="file" already to upload pictures, but the client wants to upload several files at once. So i've looking for and I found the Uploadify, but also found some bugs and i want to try something else. Any help??
Thanks in advance ;)
Upvotes: 3
Views: 606
Reputation: 30135
one possible way is to upload a zip file via input type="file" and unzip it in the script after the upload
Upvotes: 0
Reputation: 9867
If they can only use a browser that supports HTML5, I would suggest using the new multiple upload feature. I would also implement drag-and-drop uploads like gmail has.
Upvotes: 0
Reputation: 29427
Have a look at plupload.
This is a plugin that uses many different technologies to upload multiple files to server like HTML5, GEARS, FLASH, HTML4, SILVERLIGHT and select the one that best fits in the user browser.
It also feature a jquery UI plugin for your upload queue.
Upvotes: 2