Getting this error when running install.php

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
It's a common error when memory leak issue occured inside your php code:
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:

Code:
ini_set('memory_limit', -1);
If you dont know which php.ini is used, you can try like this:

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