I keep getting the same exceeded memory error when I try to compile my program. I dont see how i could be over, i think there's a memory leak somewhere. I tried turning the memory limit up and that didnt seem to work, dont know what im missing.
This is the Call Stack that comes with the error:
#-time-memory-function-location
1-0.0007-368640-{main}()-..\index.php:0
2-0.0085-912336-drupal_bootstrap()-..\index.php:21
3-0.0866-4412920-_drupal_bootstrap_full()-..\bootstrap.inc:2056
4-0.3989-20146272-drupal_theme_initialize()-..\common.inc:4936
im using WAMP server 2.1
phpmyadmin 5.3.5
nice menus and marinelli theme
I have changed to "memory_limit = 128M" in my php.ini but get the same error. Should I be changing it somewhere else??
The code from the file theme.inc listed in the Call Stack is shown below.
I also accidentally turned on css3 right before this error started. If this is the problem is there a way to disable it manually without getting back into the drupal interface??
Any help would be greatly appreciated. Thanks!
Theme.inc
><><><><><><><><><><><><>
<?php // $Id$
/**
* Overrides of theme implementations
*/
function marinelli_theme() {
return array(
'custom_links' => array( // function that renders classic primary menu with
'variables' => array('links' => NULL, 'attributes' => NULL, 'heading' => NULL),
),