Skip to content

Instantly share code, notes, and snippets.

@dharma017
Created August 20, 2024 08:44
Show Gist options
  • Save dharma017/26879f7d8bcc251962ac8c7c1716536d to your computer and use it in GitHub Desktop.
Save dharma017/26879f7d8bcc251962ac8c7c1716536d to your computer and use it in GitHub Desktop.
Fixing PHP Fatal Error: Allowed Memory Size Exhausted

Navigate to your php.ini file and edit it

sudo vim /etc/php/7.4/fpm/php.ini

Update parameters as following

upload_max_filesize = 256M
post_max_size = 256M
memory_limit = 512M
max_execution_time = 180

Restart php fpm service

sudo service php7.4-fpm restart

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment