my default image is broken when it tries to load.
my code:
has_attached_file :background, :styles => { :medium => "300x300>", :thumb => "100x100>" }, :default_url => "default-logo.png"
validates_attachment_content_type :background, :content_type => /\Aimage\/.*\Z/
Rendered:
Failed to load resource: the server responded with a status of 404 (Not Found) http://test.dev/default-logo.png
default-logo.png
is located in my assets/images
folder. Why is it now showing up?