Hello,
yet another problem: i was trying to activate new modules. i clicked on "save configuration" and the following error message was shown up:
Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 14592 bytes) in /home/www-data/htdocs/hannibalector/art/database/updates.inc on line 1893
line 1893 reads: foreach (node_get_types() as $type => $name) {

the modules i wanted to activate don't shhw up in "admin/settings", but i can access them by typing in the whole path, e.g. ?q=admin/settings/disknode

may you help me please? thanks!
if you need any further information, tell me.

Comments

firstov’s picture

Add this into your settings.php file to increase allowed memory size to 32MB
ini_set('memory_limit', '32M');

hannibalector’s picture

thx fr your quick reply

now i'm getting this error:

Warning: ini_set() has been disabled for security reasons in /home/www-data/htdocs/hannibalector/art/sites/default/settings.php <br> on line 140

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent<br>(output started at /home/www-data/htdocs/hannibalector/art/sites/default/settings.php:140)<br>in /home/www-data/htdocs/hannibalector/art/includes/bootstrap.inc on line 747

and line 140 is exactly: ini_set('memory_limit', '32M');

firstov’s picture

pls double check that you did not open php block within another php in your settngs.php file. If that does not help you should be able to achive the same result by adding this in your php.ini file
memory_limit = 32M;