Hello!
I just tried to update my Views 7.x-3.5 to version 7.x-3.6 and the following Fatal error appeared:
Fatal error: Maximum function nesting level of '100' reached, aborting! in ....\includes\bootstrap.inc on line 2785
I tried in my wamp local server, and I changed my memory and nesting resource level to these values, but the same error stills and its like it is not taking the new nesting level of 500
max_input_nesting_level = 500
memory_limit = 2048M
Does anyone how to sort this out?
Comments
Comment #1
hozt commentedI am also having this same issue. Increasing the amount of memory to php did not solve the issue. Rolling back to an earlier version of views solved the problem.
Here is the error that was in my logs:
PHP Fatal error: Allowed memory size of 2365587456 bytes exhausted (tried to allocate 9 bytes) in /home/webuser/web/includes/bootstrap.inc on line 1525
Comment #2
dawehnerurgs. Have you figured out which view causes this problem? Once you have managed to find it, please post an export of the view here.
Comment #3
gausarts commentedJust looked for the same solution. This helps me:
In my case I have xdebug and webgrind installed, and adding the following to php.ini fixes the issue.
xdebug.max_nesting_level = 200
Comment #4
esmerel commentedComment #5
alesr commentedSame error, but in my case even xdebug.max_nesting_level set to 500 doesn't help.
Maybe it is not event related with views. I disabled views
and tried to visit the page where I get this WSOD (with error about nesting in error.log) and I still get this error!
Comment #6
mhamed commentedok
here the same problem with wamp server on localhost
php5.4
omega subthemimg
drupal7.22
thanks a lot solved with adding the code to php.ini
xdebug.max_nesting_level = 200
evenif there is no code on php.ini that says 100 as it is printed on the error page
Comment #7
valery86 commentedThat worked for me too!
Thanks a lot!
Comment #8
sutharsan commentedIssue is fixed for the original author. Closing.
Comment #10
cutesquirrel commentedFYI, I also had this issue due to my memcached server which was unreachable.
Hope this helps
Comment #11
kingfisher64 commented#3 worked for me. thanks
Comment #12
waqarit commented#3 has solved my problem. thanks