Is it possible to create a web based script that would allow a user to sequentially download multiple files without causing the user to accept each forced download?

Potential Process:

User selects files to download. User selects directory or directory is predefined within the script. Files are downloaded to their local drive sequentially.

Thanks!

link|improve this question

feedback

2 Answers

That doesn't work without a plug-in, and would be a serious security hole if it did.

What you could do is zip the files with PHP (either now or at run-time) and let the user download the archive. It's the method used by a lot of sites now, even if the archive is highly customizable.

Examples:
http://painterlypack.net/customizer.php
http://jqueryui.com/download
http://jqueryui.com/themeroller/

link|improve this answer
We've been testing zipArchive and zipstream and have run into file size limitations due to what we think is a memory leak. Are you aware of any other Zip options that could achieve zipping multiple gigs of mp3s? And yes, i figured it was a giant security risk, but the script will only be accessible to a handful of people. – Stephen Oct 27 '10 at 20:33
@Stephen then you should investigate other options, like FTP. HTTP is not a good way to transfer multiple gigs of data. – Fosco Oct 29 '10 at 18:07
@Fosco Thanks for the suggestion. Are you referring to the FTP protocol or simply having the user log in with an FTP transfer client and download the files? I would love to find a way to populate an FTP queue from a generated "log" file from the site. Some how, we would need to populate their queue..just not sure how. – Stephen Nov 1 '10 at 14:02
@Stephen I was referring to just using FTP. I do not know of any way to do what you're requesting... I could see creating a batch script perhaps, like 1 line WGET's for each file, or some similar command for windows.. – Fosco Nov 1 '10 at 16:03
@Fosco I had thought about that angle as well but the users of this are 100% MAC based. thanks again! – Stephen Nov 1 '10 at 17:57
show 1 more comment
feedback

I've seen this done with Flex:

http://soegianto.com/blog/2008/07/multiple-file-upload-with-flex-and-php/

...maybe there are some more recent examples/libraries out there as well.

link|improve this answer
Thanks! Unfortunately I'm searching the download equivalent. I've worked with the Jquery Uploadify plugin for multi-file uploading, works brilliantly. – Stephen Oct 27 '10 at 20:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.