Closed (fixed)
Project:
FeedAPI
Version:
5.x-1.x-dev
Component:
Code parser_simplepie
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Feb 2008 at 16:52 UTC
Updated:
22 Nov 2012 at 21:59 UTC
Occured with parser_simplepie and simplepie.inc 1.1
After having an installation with 2.2K feeds offline for half a day, I got
Fatal error: Maximum function nesting level of '100' reached, aborting!
errors on cron.
It seems that under certain circumstances, SimplePie->init() recurses forever (line 1565 in simplepie.inc 1.1).
I removed all files from the simple pie cache and things started to work again.
I guess this is a SimplePie error.
Alex
Comments
Comment #1
aron novakIt should be simplepie error, make it won't fix.
Comment #2
kehan commentedI had a problem with the same error in my own code - it turns out it's because I have xdebug enabled - I found I could fix it by setting
xdebug.max_nesting_level=200in my php.ini.http://www.php.net/manual/en/ini.list.php
Comment #3
kenorb commentedThanks.
xdebug.max_nesting_level worked.
If you don't using xdebug, try increasing max_input_nesting_level.
Comment #5
avpadernomax_input_nesting_levelis for the super global variables like$_GET, and$_POST: It's the number of nested array you can have in those variables.