Page 1 of 1

Memory exhausted for 1.6.3

Posted: Sat Aug 15, 2009 3:12 pm
by qv90
i tried to install clean 1.6.3 and got the following message (after enabling DEBUG):

Code: Select all

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 122880 bytes) in /srv/www/htdocs/web338/html/cmsms/lib/smarty/Smarty_Compiler.class.php on line 1131 
Any suggestions how to circumvent?

Greets
Florian

Re: Memory exhausted for 1.6.3

Posted: Sun Aug 16, 2009 6:05 am
by cyberman
It seems your host has a 8 MB limitation - you can try to use the parameter

Code: Select all

$config['php_memory_limit'] = '';
in config.php. But it must be allowed to overwrite server settings.

Re: Memory exhausted for 1.6.3

Posted: Sun Aug 16, 2009 6:42 am
by qv90
Thx,

I successfully implemented a brute force method I found somewhere else:

Code: Select all

ini_set("memory_limit", "32M");
and it worked for me *ufff*

Greets
Florian

Re: Memory exhausted for 1.6.3

Posted: Sun Aug 16, 2009 7:22 pm
by cyberman
It does the same 8) ...