Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Avoid Drupal installer exception for xdebug nesting level
Browse files Browse the repository at this point in the history
```
Exception 'Drupal\Core\Installer\Exception\InstallerException' with message 'Xdebug settings: xdebug.max_nesting_level is set to 255.

Set xdebug.max_nesting_level=256 in your PHP configuration as some pages in your Drupal site will not work when
this setting is too low.' in /var/www/drupal/core/includes/install.core.inc:2292
```
  • Loading branch information
weitzman committed Aug 3, 2015
1 parent 3ae8490 commit f910a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ php_xdebug_remote_enable: 1
php_xdebug_remote_connect_back: 1
# Use PHPSTORM for PHPStorm, sublime.xdebug for Sublime Text.
php_xdebug_idekey: PHPSTORM
php_xdebug_max_nesting_level: 255
php_xdebug_max_nesting_level: 256

# Solr Configuration (if enabled above).
solr_version: "4.10.4"
Expand Down

0 comments on commit f910a4e

Please sign in to comment.