Paperclip is able to successfully upload an image (it is uploaded to the appropriate folder on the server). However, when I try to view the image, it reports it as missing.
models/photo.rb:
class Photo < ActiveRecord::Base
attr_accessible :image
attr_accessor :image_file_name, :image_file_size, :image_updated_at
has_attached_file :image, styles: {small: "300x300>" },
url "/photos/:id/:style/:basename.:extension",
path: ":rails_root/public/photos/:id/:style/:basename.:extension"
validates_attachment_presence :image
validates_attachment_size :image, less_than: 5.megabytes
end
Viewing the image: (photos/show.html.erb):
<% if @photo.image? %>
<%= image_tag @photo.image.url(:small) %>
<% else %>
Missing image <%= @photo.id %>
<% end %>
This outputs "Missing image" with the correct photo id.
Despite this, uploaded photos are stored at the correct path, and are accessible via the correct url, e.g.
http://localhost:3000/photos/1/small/1351546785_accepted_48.png