I have looked through many similar questions and tried the solutions with no success. I am using rails 3 and paperclip 3. I have successfully installed ImageMagick as the tutorial on the paperclip github instructs.
In my model:
has_attached_file :photo, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => "/profile_photo_store/missing.png"
attr_accessible :photo
In my database I have added these columns:
:photo_file_name, :photo_content_type, :photo_file_size, :photo_updated_at
In my edit view:
<%= form_for(@user, :url => user_path, :html => { :multipart => true }) do |f| %>
<div class="field">
<b>Add a Photo</b><br />
<%= f.file_field :photo %>
</div><br />
<% end %>
In my show view
<%= image_tag @user.photo.url(:medium) %>
I can tell that the photo is being sent because I see it going through via Firebug. Yet the missing.png is still displaying. Where does paperclip save the files? What am I doing wrong.