Thanks for helping me. I know that php.ini file exists in PHP / Apache. If I edit this to increase the download size, it works in my local one. But my goal was to upload it to my laravel website.
After too many bumps and tests, I finally found a solution, you have to edit public / .htaccess Add this
RewriteEngine On php_value upload_max_filesize 10M php_value post_max_size 20M php_value memory_limit 32M
This will increase the file upload size in Laravel 5.4
I recently started using laravel and upgraded to 5.4 as soon as it was released. So, I had a lot of questions.
source share