I keep getting an error when i try to upload an Image with dragonfly. I know what the problem is because I solved it when I was using paperclip. But I don't know how to solve it for dragonfly.

The problem is that dragonfly is executing the command "identify" and it's looking for the binary on "/usr/local" but instead it's on "/opt/local" in Paperclip, I would easily solve this with.

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

Anyone knows the equivalent command for dragonfly? I'm using rails 3 btw.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I solved it, but going into the file: image_magick_utils.rb and changing:

  configurable_attr :convert_command, "convert"
  configurable_attr :identify_command, "identify"

to:

  configurable_attr :convert_command, "/opt/local/bin/convert"
  configurable_attr :identify_command, "/opt/local/bin/identify"
link|improve this answer
feedback

Also, the above answer works to solve the Dragonfly::ImageMagick::Utils::ShellCommandFailed exit status 127 that prevents the uploading of images to refinerycms in development mode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.