I get this error:
Symfony\Component\Mime\FileinfoMimeTypeGuesser::guessMimeType:50
vendor/symfony/mime/FileinfoMimeTypeGuesser.php:50
The "" file does not exist or is not readable.
when trying to upload a file bigger than 2mb.
php.init important values:
upload_max_filesize=3000M
post_max_size=3000M
Upload a file bigger than 2mb
Hi there,
Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:
However, this issue will not be locked and everyone is still free to discuss solutions to your problem!
Thanks.
I've fixed this changing the temporal folder permissions.
I've fixed this changing the temporal folder permissions.
which temporary folder?
@RaulChan the temporary folder of the OS, where the OS make a temporary copy of the file before moving it to the final location. Hope this can help you.
@RaulChan the temporary folder of the OS, where the OS make a temporary copy of the file before moving it to the final location. Hope this can help you.
I will try...
thank you !
If someone else gets this error and it doesn't turn out to be a permissions issue, check your php.ini...make sure that your upload_max_filesize is as big as your post_max_size. I had 1000M for post_max_size (we deal with some big ol' video files), but only 100M for upload_max_size (I blame my old eyes). The upload would churn for a long time, and then throw the error above.
@jwjcmw thank you, saved my day!
you are amazing @jwjcmw , thanks for the knowledge
Most helpful comment
If someone else gets this error and it doesn't turn out to be a permissions issue, check your php.ini...make sure that your upload_max_filesize is as big as your post_max_size. I had 1000M for post_max_size (we deal with some big ol' video files), but only 100M for upload_max_size (I blame my old eyes). The upload would churn for a long time, and then throw the error above.