Hi now I am working with civicrm with drupal. I created one custom import section. when ever I submit mapped form it shows this kind of an error

Fatal error: Maximum function nesting level of '100' reached, aborting! in C:\wamp\www\crmdev\includes\common.inc on line 290

how can i fix this how to reset the nesting level. Any body can help me.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

If you are using xdebug extension
You can do this ini_set('xdebug.max_nesting_level', 200)

xdebug.max_nesting_level

link|improve this answer
damn, I thougth my code was broken and searched and searched and searched ... – scube May 22 at 12:53
feedback

Your code almost certainly has a bottomless recursion, but it's difficult to be sure without seeing the code.

link|improve this answer
feedback

Max nesting level is typically set by zend/xDebug, if infinite recursion occurs without those you will get a segfault instead, you should focus on fixing that infinite recursion instead ...

link|improve this answer
Yeah, xdebug is causing this notice, but without xdebug it would be worse. Try to fix it, xdebug will help to pinpoint the exact issue. – Scorchio Aug 9 '11 at 12:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.