Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

pate jay's avatar

Laravel video and audio upload large size

I have a problem with uploading files larger than 1MB. My website is already published online. When I try to upload small audio and video files , it uploads successfully, but I when try to upload pdf files larger than 2 or 5MB I get this error. knowing that I allowed uploading more than 100MB size.

0 likes
1 reply
Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

knowing that I allowed uploading more than 100MB size.

How do you know? Be aware that max file size is not the same as the amount of space you have in total

You can try and set the max size in your htaccess

php_value upload_max_filesize 64M
php_value post_max_size 64M 
1 like

Please or to participate in this conversation.