I am following a tutorial here https://www.youtube.com/watch?v=h5i6emqdOgg
In between the installation I get this page, where it shows that there are some requirements missing. One of them says Set xdebug.max_nesting_level=256 in your PHP configuration
I went to C:\wamp\www\sampleWebSite\sites\default
which has :
- files
- default.services.yml
- default.settings.php
- settings.php
I opened settings.php
to see xdebug
settings but it was missing there. So I added a line there xdebug.max_nesting_level=256
and then refreshed the page and page gave me error, so I went to same settings.php
file again and changed it $settings['xdebug.max_nesting_level'] = 256;
there is no error now but page still shows that xdebug
setting is not set to 256.
How to fix it?