回答:
このコードを.htaccess
ファイルに入れるだけです
<IfModule mod_php5.c>
php_value xdebug.max_nesting_level 500
</IfModule>
これはxdebugの既知の問題ですxdebugの 問題
さらに、https://blog.amasty.com/magento-2-installation-guide/で確認できます。
An error has happened during application run. See debug log for details.
magento2\pub\static
全体のフォルダが含まれていない
私のための次のソリューションの仕事。
php.iniに次の設定を入れます
xdebug.max_nesting_level = 200;
またはそれが機能しない場合は、setup / index.phpの先頭に次のコードを配置できます
ini_set('xdebug.max_nesting_level', 200)