1

Content type not recognizing while uploading files using paperclip + jquery file upload.

Throwing below error "content type discovered from file command: CDF V2 Document, No summary info. See documentation to allow this combination"

fail to upload the same.

Rameshwar Vyevhare
  • 2,699
  • 2
  • 28
  • 34

1 Answers1

1

We can fix this issue by adding below file in the intializers in rails -

# config/initializers/paperclip.rb

Paperclip.options[:content_type_mappings] = {
    :xls => "CDF V2 Document, No summary info"
}

This solve my problem, hope this will help you as well.

Thank you.

Rameshwar Vyevhare
  • 2,699
  • 2
  • 28
  • 34