0

I have a problem. I use gaufrette with Vich uploader and add a $file attribute to my entity that is VichUploadable.

I did the configuration and the upload of files works well.

But when I want to get the mime type of the file (via the entity after the file has been uploaded) I get an error due to the file name format that Gaufrette use.

When I try to do "$myEntity->getFile()->getMimeType()" where the getFile return the File object that is Vichuploadable, I get this error : " Unable to find the wrapper \"gaufrette\" - did you forget to enable it when you configured PHP?"

Do you have any idea on how I can have the mime type ?

thank you

user3060886
  • 777
  • 1
  • 6
  • 10

1 Answers1

0

Gaufrette stream wrappers must be enabled for this to work:

knp_gaufrette:
    stream_wrapper: ~
    # ...
K-Phoen
  • 1,260
  • 9
  • 18