After following instructions in the read me, I get this when I try to load the page where the slider node is:
"Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 3560 bytes) in .../includes/common.inc on line 1463" (sometimes line 1299).
I do not have a general memory problem. Devel module is not enabled, btw.
Comments
Comment #1
Mark Theunissen commentedHi perandre
Interesting one...!
- Can you confirm that you can view the full body of each individual node, without error?
- How big are the nodes? Maybe PHP is running out of memory only when it loads all of them together. Remember that the contents of all the nodes are loaded together on one page in order to make the slider.
- Are the nodes quite complex? Do they load any additional libraries or files that may be causing an "infinite loop" when they are all loaded together?
- Can you try upping your memory in PHP.ini and see if that works?
- Can you add a debug_backtrace() into the point of failure in common.inc, so I can see where in the slider module the call is failing?
Comment #2
perandre commentedHi, Sir!
Thanks for your response.
Problem solved! I got the documentation wrong, so I did a couple mistakes.
I initially thought that I had to add the node reference field to the nodetypes I wanted to use in the slider. Somehow I must have ended up in a loop of some sort, and I got all kinds memory errors. Some hours of confusion, there :)
I found this node: http://drupal.org/node/322478 and things went smooth from there.
Comment #3
Mark Theunissen commentedGreat! ;)