Getting this error when running install.php
It's a common error when memory leak issue occured inside your php code:Code:Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 9845646 bytes) in /home/sitewide/public_html/include/function.php(1) : eval()'d code(3) : eval()'d code on line 116
Fatal error: Allowed memory size of 33554432 bytes exhausted
Basically you can enlarge the allowed memory in php.ini or add a new line in the front of the issued file:
If you dont know which php.ini is used, you can try like this:Code:ini_set('memory_limit', -1);
Code:[root@admon apache]# bin/php -i | grep php.ini Configuration File (php.ini) Path => /home/apache/lib Loaded Configuration File => /home/apache/lib/php.ini


LinkBack URL
About LinkBacks




Reply With Quote