I'm running into a very odd problem. Basically, I'm getting an out of memory error - but I really shouldn't be as I've allocated 250 mb of memory in my php.ini, and it confirms in phpinfo. I haven't installed any new modules or done anything particularly major on the site, I just added a new content type.

Fatal error: Out of memory (allocated 35913728) (tried to allocate 1672436 bytes) in /home/sites/theillustrationgallery.com/public_html/includes/bootstrap.inc on line 634

How can I fix it?

Thanks!

Comments

hermx’s picture

Hi, I once had a similar problem. That was caused by an unadvertently recursive definition af a view. Drupal was trying to construct a view which contained a node with a similar view (same tag) inserted. This recursive process run until the memory was exhausted with the same result as you described.
My hint: Check your type and other definitions for logical programming faults of that kind or possibly you forgot to define a restrictive filter or something like that. Surely some script is doing something without end and that is NOT a fault of drupal but of your definitions.

greetings, hermx