I've been using paperclip and everything was fine, till my server installed Passenger and I cant make it work. I have the most simple example of :image like this:
has_attached_file :image , :url => "/:class/:attachment/:id/:style_:basename.:extension" , :default_url => "/:class/:attachment/missing.png", :styles=>{:lista=> "38x38#", :comunidad => "50x50#", :destacado=>"100x100#",:perfil => "150x150#"}
And the 4 fields on the database, and everything was working just fine.. Now in the log I have [Paperclip] Saving Attachments...
But they are not being saved! The directory permissions are ok.. but nothing happens. Any clue?
Thanks!