Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've had a rails install with Paperclip working just fine for a while now and in a recent deploy it has broken. I believe it coincided with a gemfile update, because nothing else on the machine has changed. The error is:

Command :: file -b --mime :file
[paperclip] Error while determining content type: Command 'file -b --mime :file' returned 1. Expected 0

This is on a png file that I've verified to be valid. When I run 'file -b --mime' on the image I get:

image/png; charset=binary

I also get this afterwards:

Command :: identify -format %wx%h :file
[paperclip] An error was received while processing: #<Paperclip::Errors::NotIdentifiedByImageMagickError: /tmp/song_waveform_3010520121008-23335-165xag4.png20121008-23335-j8e18p is not recognized by the 'identify' command.>

I did a which file and it gave me /usr/bin so I tried setting the Paperclip.options[:command_path] = "/usr/bin/" in production.rb with no change.

I can't think of why this could be happening. Perhaps it's not pointing to the right directory? I'm a bit lost here.

share|improve this question

2 Answers

up vote 15 down vote accepted

Most likely this is caused by the API change in Cocaine 4 which Paperclip has not caught up to yet. Try using the earlier version of Cocaine by inserting this line into your Gemfile:

gem "cocaine", "= 0.3.2" 
share|improve this answer
1  
You've certainly saved me hours of time. Thank you. – Nathan Wienert Oct 9 '12 at 5:18
Thank you SO much! – Fabio Russo Dec 5 '12 at 14:32
Looks like this has been fixed since paperclip 3.3: github.com/thoughtbot/paperclip/issues/1038 – Peter Ehrlich Feb 1 at 20:54
2  
My error was instead fix simply by brew upgrade ImageMagick – Peter Ehrlich Feb 2 at 19:17
WTF? Drugs are bad.... mmmmmmkayyy? – Chloe Apr 2 at 16:22

add gem "cocaine", "= 0.3.2"

then bundle install message

Bundler could not find compatible versions for gem "cocaine":   In Gemfile:
    paperclip (~> 3.0) x86-mingw32 depends on
      cocaine (~> 0.4.0) x86-mingw32

    cocaine (0.3.2)
share|improve this answer
2  
Try using this: gem "cocaine", "= 0.3.2" gem "paperclip", "= 3.0.4" – Fabio Russo Dec 5 '12 at 14:33
Thanks, Fabio! Your solution worked for me. – ethagnawl Jan 30 at 20:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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