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

Hybernaut’s picture

Assigned: Unassigned » Hybernaut

I will continue to investigate.

Prometheus6’s picture

If 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.

Hybernaut’s picture

No, this is the first load of the admin/modules page, before I've even turned the module on.

Thanks for the quick response.

Hybernaut’s picture

This 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...