This article provides a solution for when you experience an exception error when you use the optional PHP extension xdebug
.
Sample exception:
Fatal error: Maximum function nesting level of '100' reached, aborting!
To resolve this issue, you can:
xdebug
extension.xdebug.max_nesting_level
to a value of 200 or more. For more information, see xdebug documentation.After you change the configuration of or disable xdebug
, restart Apache:
sudo service httpd restart
sudo service apache2 restart