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

Paperclip Filesystem permission error after upload and save the photo in production environment but in development environment all is ok.

  • rails 3.2.2
  • ImageMagick 6.5.4-7 2012-05-07
  • rmagick (2.13.1)
  • paperclip (3.4.0)

has idea?

model:

  attr_accessible :avatar, :avatar_file_name
  has_attached_file :avatar, 
      :default_url => '/images/avatar.jpg',
      :styles => {
                  :thumb => {:geometry => '100x100#', :format => :jpg},
                  :original => {:geometry => '240x240#', :format => :jpg}},
      :storage => :filesystem,
      :url  => "/assets/users/:id/:style/avatar.:extension",            
      :path => ":rails_root/public/assets/users/:id/:style/avatar.:extension"

  validates_attachment_presence :avatar
  validates_attachment_size :avatar, :less_than => 5.megabytes
  validates_attachment_content_type :avatar, :content_type => ['image/jpeg', 'image/png']

view:

  <%= form_for :user, :html => {:multipart => true} do |f| %>
      <%= f.label :avatar %><br />
      <%= f.file_field :avatar %>
      <%= f.submit %>
    <% end %>
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.