I got following error.
Warning: require_once() [function.require-once]: Unable to allocate memory for pool.
Solved the error using following code. I just added following code in .htaccess file.
php_value memory_limit 64M
Check following:
# PHP 5, Apache 1 and 2.
php_flag magic_quotes_gpc off
php_flag magic_quotes_sybase off
php_flag register_globals off
php_flag session.auto_start off
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_flag mbstring.encoding_translation off
php_value memory_limit 64M
If you have issues then comment.
The post solved – Warning: require_once() [function.require-once]: Unable to allocate memory for pool. appeared first on DIG into CMS.