Menu

#21 Maximum function nesting level of '100' reached

v1.0 (example)
closed-fixed
None
5
2015-10-14
2015-10-14
Delphiprog
No

Hi,

Since v 0.52, I obtain the following error :
Fatal error: Maximum function nesting level of '100' reached, aborting! in C:\wamp\www\rips\lib\analyzer.php on line 21

Thanks in advance for your response.
Regards,
Philippe

1 Attachments

Discussion

  • Johannes Dahse

    Johannes Dahse - 2015-10-14

    Hi,

    this is likely due to an enabled xdebug extension.
    Please disable this extension (as well as xhprof if available) for better performance.
    You can check the status of your extension with the following code
    <?php if (extension_loaded('xdebug')) { echo "enabled"; } else { echo "disabled"; }
    Alternatively, you can add the following setting to your config.php:
    ini_set('xdebug.max_nesting_level', 0);
    However, with xdebug enabled RIPS will run very slow.

    Best regards,
    Johannes

     
  • Delphiprog

    Delphiprog - 2015-10-14

    Thanks a lot for your excellent response !
    I modified my php.ini file by deactivating lines about xdebug and all runs fine now.
    Have a nice day, Johannes.
    Best regards from France.
    Philippe

     
  • Johannes Dahse

    Johannes Dahse - 2015-10-14
    • status: open --> closed-fixed
    • assigned_to: Johannes Dahse
     

Log in to post a comment.