Open LPitonakova opened 7 years ago
Hi,
I am trying to allow using of .ico files for images. I have added the ico extension to the config file like this:
'ext_img' => array( 'jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff', 'svg', 'ico' ), //Images
But when I try to upload, I get an error: "Thumbnails creation: File extension is not allowed. filemanager/upload.php#255" .
I tried adding the ico type into the mime list in include/mime_type_lib.php like this:
'ico' => 'image/png',
But still the same error. Do you have any idea how I could enable using of ico files? Thanks!
This filemanager uses php gd extension for thumbnails creation. It doesn't support ico files.
Ah, ok, thanks for letting me know.
Hi,
I am trying to allow using of .ico files for images. I have added the ico extension to the config file like this:
'ext_img' => array( 'jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff', 'svg', 'ico' ), //Images
But when I try to upload, I get an error: "Thumbnails creation: File extension is not allowed. filemanager/upload.php#255" .
I tried adding the ico type into the mime list in include/mime_type_lib.php like this:
'ico' => 'image/png',
But still the same error. Do you have any idea how I could enable using of ico files? Thanks!