Skip to content

Commit

Permalink
MAGETWO-33027: [GITHUB] Installation Incomplete with XDebug enabled #904
Browse files Browse the repository at this point in the history


- updated message (approved)
  • Loading branch information
Ivan Gavryshko committed Mar 27, 2015
1 parent 8391aea commit 9efc30c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup/src/Magento/Setup/Controller/Environment.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,11 @@ private function checkXDebugNestedLevel()
}

$message = sprintf(
'Magento2 requires xdebug.max_nesting_level to be set %d or more,
but it set xdebug.max_nesting_level=%d.',
$minimumRequiredXDebugNestedLevel,
$currentXDebugNestingLevel
'Your current setting of xdebug.max_nesting_level=%d.
Magento 2 requires it to be set to %d or more.
Edit your config, restart web server, and try again.',
$currentXDebugNestingLevel,
$minimumRequiredXDebugNestedLevel
);

$data['xdebug_max_nesting_level'] = [
Expand Down

0 comments on commit 9efc30c

Please sign in to comment.