vote up 6 vote down star
1

What is the best tool to upload multiple files (as well as directories) on a PHP-based site? I'm looking for something that is open source or free.

I could do this easier by using ftp, but that is privilege I refuse to give the users.

Uploading multiple files through a HTML form is a bit of a hassle when it comes to uploading more than 5-6 files, so that's out of the question.

I've looked at some of the projects over at sourceforge.org, but I just wonder if anyone of you guys have any experience you want to share about this.

Thanks!

flag

71% accept rate

3 Answers

vote up 5 vote down check

Just to make sure other options are documented (SWFUpload is great) - another good solution is FancyUpload2.

link|flag
Right-on for documenting alternative. – micahwittman Oct 2 '08 at 3:57
vote up 1 vote down

Another option that I have used before is uploading and then extracting ZIP files. I have used PEAR::Archive_Zip to extract. Requires more knowledge on the user's side, but supports directories and unlimited files (depending on the memory alloted to PHP).

link|flag
vote up 6 vote down

I'd recommend something like SWFUpload for that. It's main feature is its support for progress bars, but it also allows for queuing files which is particularly handy (this is actually the second time I've recommended it today).

link|flag
Thanks, I'll look into it! – Eikern Oct 1 '08 at 20:50

Your Answer

Get an OpenID
or

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