I have the following code on my model:

has_attached_file :photo, :styles => { :small => "150x150#" }, :storage => :s3, :s3_credentials => "#{RAILS_ROOT}/config/s3.yml", :path => "/photo/:id/:style/:filename", :s3_headers => { 'Cache-Control' => 'max-age=315576000', 'Expires' => 10.years.from_now.httpdate }

When an image is uploaded, only the original is saved, the styles are not working. There is no small file generated.

link|improve this question

80% accept rate
assuming you've got rmagick installed? – scaney Nov 29 '10 at 18:32
Yes, ImageMagick is installed, but perhaps it is not configured properly? I can use it from the command line and I get no complaints from paperclip. – efleming Nov 30 '10 at 2:20
feedback

2 Answers

up vote 0 down vote accepted

You just need to update the gem to the latest and greatest

link|improve this answer
feedback

Assuming that your S3 credentials are ok, maybe you should try setting a file type for the small file. Something like :styles => { :small => "150x150#", :png }

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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