Question

Allowed Memory Size Exhausted Error in Laravel Application

Hello!

I keep getting an error in our Laravel application that says “Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes)”. I’ve increased the PHP memory limit to 2GB but I still keep getting this error. Our databases are a little more than 1GB in size, so I’m not sure if that could be the issue?

Any help would be greatly appreciated!


Submit an answer
Answer a question...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

KFSys
Site Moderator
Site Moderator badge
October 30, 2022

Hi @d8ce18629910-41ba-a430-d7058a,

Are you sure the memory limit you’ve increased is taking place? To make sure you’ll need to check it. The check if that’s true, create a file called info.php in your laravel’s root directory. Inside this file you can type in:

<?php

phpinfo();
?>

Once you’ve saved the file you’ll need to open it in your browser - https://yourdomain.com/info.php. In there search for memory size and see if the updated value has taken place.