up vote 4 down vote favorite
2
share [g+] share [fb]

We have to accept large file uploads (video content) and want to do that in a way that works well across all standards-compliant browsers and plug-ins. Our current setup looks like this:

  • SWFUpload
  • input type="file" for graceful degradation

On the server-side, we have nginx and the upload module streaming the uploaded files into the server, then handing the requests off to a merb app.

Unfortunately, it looks like the recently released Adobe Flash Player 10 broke every single free/open uploading flash component out there (and then, some other sites which have their own proprietary versions as well), but some other sites, such as Flickr and Vimeo, seem to work just fine.

I've been poking around looking for other ways of doing this, but since compatibility with both Flash 9 and 10 is mandatory, I couldn't find a suitable solution. Any ideas?

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

File uploading is always a pain.

I tried a few flash uploaders a while ago and it seems all of them had the limitation of not being to display a progress bar on Macs. Not to mention the upgrade to flash 10 broke most flash uploaders so users of our company app went from multiselecting a whole folder with 50 files to upload at once to uploading 50 files one at a time.

Java uploaders work fine (even through Java updates) but if you don't have small user base that you can explain why they need to download java and allow an applet to run in their browser, most will not use it.

I think the middle ground is to just use ftp. It's old but effective, works with extremely large files and multiple files.

link|improve this answer
My vote is just Java, virtually everybody has it now. FTP isn't going to work on your average user. – TravisO Nov 26 '08 at 22:15
+1 for TravisO, everyone has Java whether they know it or not. – Mauricio Scheffer Dec 13 '08 at 22:47
feedback

Try FancyUpload. It's a MooTools uploader and it works for both Flash 9 and 10.

link|improve this answer
feedback

I've been using JumpLoader with good results. Support is great, free version available, even includes some basic image processing functions (crop, resize, etc).

According to my google analytics data (non-tech website), 99% of visitors have Java installed, so that's not a problem.

Of course, always provide a simple input type="file" alternative, just in case.

link|improve this answer
feedback

Java uploaders are the best tools for large files, try Rad Upload it's very useful for large files.

link|improve this answer
feedback

New versions (v2.2.0+) of SWFUpload deal with the Flash 10 issue.

link|improve this answer
They seem to in some cases - unfortunately, they don't seem to call the update_progress_handler events on some of the platforms we tested (MacOS X 10.5.5 - Safari 3.x and Firefox 3). Do you think that would be an unrelated issue? – Carlos Villela Nov 25 '08 at 17:42
feedback

Your Answer

 
or
required, but never shown

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