When I upload a photo, my model fails validation, err well even without any validations I’m returned this error:
/tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command. and
/tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command.
I’m confident this is not related to ImageMagick because I’ve removed any image processing from the uploading, also I’ve tried uploading different mime types, like .txt files and the such.
Additionally, I found something that may work. A blog post claims that putting the following in my environment (in this case development.rb)
Paperclip.options[:command_path] = "/opt/local/bin"
This is related to ImageMagick. The
command_pathoption needs to point to the location whereidentifyis installed. From the command line, you can determine this withwhich identify.Afterwards, set
command_pathto that path (inconfig/environments/development.rb):