It is my User.rb model,
My images are not stored in my assets directory..

has_attached_file :photo, :styles => { :small => "100x100#", :large => 
"500x500>", :thumb => "60x60>" },
                   :url  => "/assets/users/:id/:style/:basename.:extension",
                    :path => 
":rails_root/public/assets/users/:id/:style/:basename.:extension"

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

Please advice me...

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/by1i65Un6VkJ.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to