Script abort because of a possible infinite loop

Viewed 9554

I have followed this instructions to setup the latest version of NEOS:

  1. https://docs.neos.io/cms/installation-development-setup/manual-installation-with-a-web-server

  2. https://docs.neos.io/cms/installation-development-setup/running-the-setup-tool

After i log into the CMS i get the following error:

Xdebug has detected a possible infinite loop, and aborted your script with a stack depth of '256' frames
Exception Code  0
Exception Type  Error
Thrown in File  Packages/Framework/Neos.Flow/Classes/ObjectManagement/ObjectManager.php
Line    539

My local environment:

PHP Version 7.3.26-1+ubuntu20.04.1+deb.sury.org+1
XDebug 3.0.2

what's going wrong here?

1 Answers

this solves my problem 20-xdebug.ini

[xdebug]
xdebug.max_nesting_level=512

php.ini

max_execution_time = 600
Related