I’ve googled tutorials the last couple day on this and I’m completely lost/stuck.
I have my rails app working with paperclip and S3. I have an Image table, where a user can upload a single image, which will belong to an Album.
How can I get this so the user can upload more than one photo at once?
Heres my code: https://github.com/SirJustinWhite/PhotoCloud
The good news is that you already have it working for one item. Getting it to work for multiple items is as easy as hitting the same working spot over and over again. There are many existing solutions to accomplish this. The one that I prefer to use is https://github.com/blueimp/jQuery-File-Upload . It works great for Rails, in fact, here is a example accomplishing what you want, using the same tools – https://github.com/tors/jquery-fileupload-rails-paperclip-example .