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

Hibt's avatar
Level 1

How Increase uploading file size in laravel.

How to increase file Uploading size in laravel . specially in .htaccess file . when i upload the file which is in kb size , it is uploaded easily but when i upload the file in MB size it is not uploaded. anyone help me ...

0 likes
5 replies
schir1964's avatar

Check your php.ini file. There's another configuration setting that can affect the upload but the details escape me now.

mehany's avatar

Try

   ini_set('memory_limit','256M');
   $file_name = $request->file('myImage');

Please or to participate in this conversation.