Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using carrierwave 0.7.0. I have a model with avatar and a thumb version which I am cropping (something like http://railscasts.com/episodes/182-cropping-images).

class Organization
   #...
   mount_uploader :avatar, :AvatarUploader
end

It runs fine on local machines. However, when I push to my staging server, I am having problems.

I am able to create versions, but when I run recreate_versions! with different cropping information, it won't update the versions on fog servers. I can see from my rails logger that the cropping happened as expected, and I've also logged the newly cropped file and it looks right by looking at its content length. However, it is not persisted on my aws server. Note that I am able to do the cropping the first time. Any ideas guys?

Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.