Rails paperclip upload csv -
i want upload csv
file paperclip
but have got paperclip::errors::notidentifiedbyimagemagickerror
my form
<%= form_for upload.new |form| %> <%= form.file_field :file %> <%= form.submit%> <% end %>
model
class upload < activerecord::base has_attached_file :file, styles: { medium: "300x300>", thumb: "100x100>" }, :path => ":rails_root/public/system/:attachment/:id/:style_:filename" validates_attachment_content_type :file, content_type: ['text/plain', 'text/csv', 'application/vnd.ms-excel'], message: "is not in csv format" end
how fix it?
Comments
Post a Comment