Is it possible to somehow increase? In php.ini worth 512
Fatal error: Allowed memory size of 134217728 by exhausted (tried to allocate 72 bytes)
Is it possible to somehow increase? In php.ini worth 512
Fatal error: Allowed memory size of 134217728 by exhausted (tried to allocate 72 bytes)
So, you have a value of 512MB in php.ini, and the script considers that it has been allocated 128MB.
Perhaps you have something of this:
php_admin_value memory_limit 128MB .php_value memory_limit 128MB . Remember that .htaccess values can be taken from parent directories.ini_set("memory_limit","128M"); still called ini_set("memory_limit","128M"); .You can naturally increase it, change 512 to a higher value and restart the web server. And better try to deal with a section of code in which a memory leak occurs. Find the part of the script whose call causes an error and quote it in the question.
Source: https://ru.stackoverflow.com/questions/520234/
All Articles