Once installed on current cvs, amazontools 4.6.0 causes the /admin/modules page to fail.
> Allowed memory size of 8388608 bytes exhausted (tried to allocate 137 bytes)
So it looks like some sort of infinite recursion problem, but I have been unable to track it down.
I am running PHP 4.3.8
Comments
Comment #1
Hybernaut commentedI will continue to investigate.
Comment #2
Prometheus6 commentedIf you're writing a review ($node->type == 'amazon'), the module creates a product information node ($node->type == 'amazon-node'). If there's infinite recursion, that's where it is.
I'll get the latest cvs version of Drupal too.
Comment #3
Hybernaut commentedNo, this is the first load of the admin/modules page, before I've even turned the module on.
Thanks for the quick response.
Comment #4
Hybernaut commentedThis turned out to the common "hit the default php.ini memory limit" problem, as described in http://drupal.org/node/14233.
Once I cranked my script memory limit sufficiently high, I was able to load the modules page no problem.
Clearly the admin/modules node is going to use up lots of memory because it loads all the modules into memory...