The Joy of Hex

Drunken Monkey Coding Style with a hint of Carlin humor

Jun 20, 2013 - 1 minute read - symfony xdebug php

Symfony 2.3 erroring out with Xdebug

When working with Symfony 2.3 there is a chance that xdebug will start erroring out with “Maximum function nesting level of ‘100’ reached, aborting!” pretty quick.

To solve it, add

1
xdebug.max_nesting_level = 1000

into your xdebug.ini file.

It will make your life a whole lot easier…