Page 1 of 1

Error after Install

PostPosted: Fri Jun 29, 2007 4:17 pm
Author: gazza23
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 184320 bytes) in /home/sites/mysite.com/public_html/blog/cache/tpl_Integra2.calendar_box.php on line 240

I have just installed Integra and get this when trying to access the index.php page, but I can still access the admin pages. Any ideas

Confused

PostPosted: Fri Jun 29, 2007 11:40 pm
Author: gazza23
ok, I deleted the entire thing. Uploaded everything again , double checked the appropriate file attributes - exact same error code again !!!

Has this got something to do with my server?

Re: Error after Install

PostPosted: Fri Jun 29, 2007 11:49 pm
Author: Helter
you should edit your servers php.ini to increase the max amount of memory a .script can consume from the default of 8 to 16m or 32m. If you cannot access your php.ini then do this

open your config.php

find

Code: Select all
define('PHPBB_INSTALLED', true);


after, add


Code: Select all
ini_set("memory_limit","32M");

PostPosted: Sat Jun 30, 2007 7:55 am
Author: gazza23
"HelterSkelter";p="26947" wrote:you should edit your servers php.ini to increase the max amount of memory a ..script can consume from the default of 8 to 16m or 32m. If you cannot access your php.ini then do this

open your config.php

find

Code: Select all
define('PHPBB_INSTALLED', true);


after, add


Code: Select all
ini_set("memory_limit","32M");



Yup, that did it!
Fantastic , many Thanks to you Sir !!!