Nick Sergeant
Nick Sergeant

Reputation: 38143

What is the best multiple file JavaScript / Flash file uploader?

Specifically, I'm looking for a client-side, JavaScript and / or Flash based multiple file uploader. The closest thing I've found is FancyUpload. Anyone have experience with it? If not, what else is out there?

Upvotes: 16

Views: 26855

Answers (10)

James McCormack
James McCormack

Reputation: 9944

Dropzone worked for me for simple drag-and-drop functionality that degrades gracefully. Very easy to set up.

Upvotes: 0

Kent Brewster
Kent Brewster

Reputation: 2520

Yahoo's YUI Uploader is your friend.

Upvotes: 10

Dan Esparza
Dan Esparza

Reputation: 28375

It looks like a new entry into this field is 'jQuery file upload':

Wiki / documentation

Demo page

Upvotes: 3

Dan Esparza
Dan Esparza

Reputation: 28375

Uploadify is a jQuery / Flash hybrid (if you don't feel like adding in YUI just to handle uploads).

Demo

How to implement

Upvotes: 10

Phil
Phil

Reputation: 487

Plupload seems to be interesting...

Upvotes: 4

Tom
Tom

Reputation: 3656

Agile Uploader now supports multiple files as of version 2.0. http://www.shift8creative.com/projects/agile-uploader/index.html

Here's a direct link to a demo: http://www.shift8creative.com/agile-uploader/examples/all_files.php

It allows all types of files and can actually resize images before upload to help save on bandwidth costs and server processing power.

Upvotes: 2

Mikhail Korobov
Mikhail Korobov

Reputation: 22238

Google Gears solution with client-side image resizing (mine, sorry for advertisment)

Upvotes: 1

Rexxars
Rexxars

Reputation: 1192

I've used FancyUpload plenty of times and it's absolutely fantastic. The only problem (but this is true for most flash uploaders, I guess) is session handling - if you're using sessions you're going to have to pass along the session ID to the flash file and back again.

digitarald (the author) has a new version of FancyUpload in beta now that works with Flash 10 (something a lot of the other uploaders don't). According to him it should be very simple to upgrade from FancyUpload2 to the new version, once it's released.

Upvotes: 1

Christian C. Salvadó
Christian C. Salvadó

Reputation: 827396

Alternatives to SWFUpload:

Upvotes: 6

Owen
Owen

Reputation: 84503

SWFUpload is probably the leading "competitor" to that.

Upvotes: 6

Related Questions