mod_rails and Paperclip problem Paperclip::NotIdentifiedByImageMagickError

mod-rails, nginx, paperclip, ruby-on-rails

Solution

Paperclip.options[:image_magick_path]

Is deprecated, apparently. Try:

Paperclip.options[:command_path] = "/usr/local/bin"

Which worked for me. Adjust path to ImageMagick as needed.

Problem

I am havingn troble deploying my app to a server runing ubuntu with mod_rails. Runing webrick on the server seems fine and I can save files, no problem. But runing the app thru nginx, I get this error when I try to save a file. [paperclip] An error was received while processing: # [paperclip] An error was received while processing: # R

Original source