I\'m working on developing a refinerycms rails app that was working good locally and now i\'ve moved it to my VPS and I was having issues with images that i uploaded through
You may have to provide the full path to convert
:
config/initializers/dragonfly.rb:
app.configure do |c|
c.convert_command = "/usr/bin/convert"
end
Change /usr/bin/convert
to the correct path to convert
, which you can find out by running whereis convert
on your VPS shell.
More details in the documentation.