Answers for "php Allowed memory size"

PHP
2

PHP Fatal error: Allowed memory size of 134217728 bytes exhausted

memory_limit = 64M;
Posted by: Guest on September-12-2020
0

Increase the PHP memory limit

/*
To increase the PHP memory limit setting, edit your PHP.ini file found under /usr/local/etc/php/7.4/.
Increase the default value (example: Maximum amount of memory a script may consume = 128MB) of the PHP memory limit line in php.ini.
*/

memory_limit = 256M
Posted by: Guest on November-03-2020

Code answers related to "php Allowed memory size"

Browse Popular Code Answers by Language