Maximum function nesting level of '100' reached, aborting after upgrading to Laravel 5.1

后端 未结 3 1368
时光说笑
时光说笑 2020-12-05 06:02

I\'m getting this error message in my Laravel application after I upgraded to Laravel 5.1.

FatalErrorException in Dispatcher.php line 200:
Maximum function n         


        
3条回答
  •  情书的邮戳
    2020-12-05 06:06

    This issue is due to xdebug extension is enabled, to fix this either you have to disable xdebug extension or edit php.ini file and change xdebug.max_nesting_level to 200 ( as by default this parameter is not included in php.ini and have to add it )

    like :

    xdebug.max_nesting_level=200

提交回复
热议问题