답변:
이 코드를 .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)