On 28 February 2014 01:07, Samuel Sosina <[email protected]> wrote: > Hi, > > I am currently trying to upload images on to Amazon S3 using paperclip for > my rails app. The upload seems to work locally, however I receive the > following error in production - > > ArgumentError (missing required :bucket option): > app/controllers/meals_controller.rb:34:in `create' > > > Heres the production.rb file - > > config.paperclip_defaults = { > :storage => :s3, > :s3_credentials => { > :bucket => ENV['S3_BUCKET_NAME'], > :access_key_id => ENV['AWS_ACCESS_KEY_ID'], > :secret_access_key => ENV['AWS_SECRET_ACCESS_KEY'] > } > }
Google found this which might help. http://stackoverflow.com/questions/20424724/ruby-on-rails-paperclip-amazon-aws-s3-heroku Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLsNWX6baJh02wG24EPFgfH_Xmd_M95PZK%2B-HA%3DpUdpG8Q%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

