Hi~ I can't upload files except pdf. (docx,xlsx....)
Who can help me?
I use laravel-filemanager version 1.8 , TinyMCE


I also meet that problem @DaxtonChen how to u solve? kindly reply me.
config/lfm.php
'valid_file_mimetypes' => [
'image/jpeg',
'image/pjpeg',
'image/png',
'image/gif',
'image/svg+xml',
'application/pdf',
'application/docx',
'text/plain',
'image/vnd.microsoft.icon',
'image/x-icon',
'application/vnd.ms-excel','application/vnd.openxmlformats-officedocument.wordprocessingml.document','application/docx'
],
not helped. BUT I Removed from: public\vendor\laravel-filemanager\js\dropzone.min.js
This:
dictInvalidFileType:"You can't upload files of this type.",
And now I am able to upload other type of files.
not helped. BUT I Removed from: public\vendor\laravel-filemanager\js\dropzone.min.js
This:
dictInvalidFileType:"You can't upload files of this type.",And now I am able to upload other type of files.
Your tip helped to me... TY @Cyber-gedamin
Most helpful comment
config/lfm.php
'valid_file_mimetypes' => [
'image/jpeg',
'image/pjpeg',
'image/png',
'image/gif',
'image/svg+xml',
'application/pdf',
'application/docx',
'text/plain',
'image/vnd.microsoft.icon',
'image/x-icon',
'application/vnd.ms-excel','application/vnd.openxmlformats-officedocument.wordprocessingml.document','application/docx'