Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Form plugin: MIME type troubles when uploading files

Started by Muut Archive 10 years ago · 3 replies · 721 views
10 years ago

Using the Form plugin, I'm having troubles with uploading files other than images.

When I modify a form page frontmatter using a text editor or the Admin panel like so:

YAML
      name: file_upload
      label: 'Add a file'
      type: file
      multiple: false
      destination: 'user/data/files'
      accept: [application/pdf, application/x-pdf, image/png, text/plain]

Grav reformats the list of MIME types like this:

YAML
      name: file_upload
      label: 'Add a file'
      type: file
      multiple: false
      destination: 'user/data/files'
      accept:
         - application/pdf
         - application/x-pdf
         - image/png
         - text/plain 

This setting allows me to select only PDF files, PNG format images and text files. So far, so good.
However when I select a text file and submit the form, Grav complains: 'File "sample.txt" is not an accepted MIME type.'

Examining the POST request with the Firefox Addon HttpFox I can see the MIME type is 'Content-Type: text/plain'. Still the file is rejected. The same goes for PDF files but PNG files are allowed and saved in the page folder (BTW not in 'user/data/files' which exists and is writable).

I've tested the upload both on localhost (OSX, PHP Version 5.6.16) and on a shared host (Linux, PHP Version 5.6.15).
Any help is much appreciated.

10 years ago

I've tested the fix and can confirm it fixes both issues, that is Grav accepts the MIME types specified and files are saved in the correct folder. Thanks @flaviocopes and @w00fz for this fix.

10 years ago

Ok thanks, will include the fix to the next release.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1352 9 years ago
Archive · by Muut Archive, 9 years ago
2 935 9 years ago
Archive · by Muut Archive, 9 years ago
2 4063 9 years ago
Archive · by Muut Archive, 9 years ago
1 2949 9 years ago
Archive · by Muut Archive, 9 years ago
3 1119 9 years ago