I'm using paperclip to upload image in my app. The validation I've is :
validates_attachment_content_type :image, :content_type => ['image/jpg','image/jpeg', 'image/png', 'image/tiff', 'image/gif']
Everything works well in firefox, chorme and IE9. But in IE8, I get an error - "Photos image content type Invalid format !!!"
Any solution or clue is much appreciated.
validates_attachment_content_type :image, :content_type => ['/image/jpg','/image/jpeg', '/image/png', '/image/tiff', '/image/gif']
. But now the photo upload does not work in any browser. Did I missed anything? – Gelman