0

Would appreciate inputs on the best file upload plugins with support of atleast following:

  1. Resizing images.
  2. Flexibility of specifying the place of storage.
  3. Nice AJAX progress bar integration.
  4. Multifile uploading facility.

Thanks.

Ishu
  • 628
  • 1
  • 13
  • 28

2 Answers2

4

You won't find a rails plugin that does all of that.
But with two ones, you can have what you're looking for.

Take a look at paperclip, which manages file upload from the server side (in ruby), the place where you want to put the file and the resizing of the images.

And take a look at swfupload (and possibly the rails plugin that goes with it, swfupload_fu) to have the client side and manage multiple file uploading.

Damien MATHIEU
  • 31,924
  • 13
  • 86
  • 94
0

Carrierwave is pretty nice and here's the Railscast

Michael K Madison
  • 2,242
  • 3
  • 21
  • 35