Magento 2 Installation Stuck at ‘Installing User Configuration’

installationmagento2magento2-dev-beta

I have installed Composer and followed the steps to install Magento2. It will be stuck at 93%. It isn't giving any proper error…

Please check the image:

enter image description here

Also, it will display in configuration, as below image.

enter image description here

We got an error in:

"Installing user configuration."

Is someone facing same issue? If so, how did you resolve this issue?

Best Answer

Just put this code in your .htaccess file

<IfModule mod_php5.c>
  php_value  xdebug.max_nesting_level 500
</IfModule>

This is known issue with xdebug Issue with xdebug

Further you can check here https://blog.amasty.com/magento-2-installation-guide/

Related Topic