cancel
Showing results for 
Search instead for 
Did you mean: 

Magento Installation Stuck at 0%

Magento Installation Stuck at 0%

Everything goes smoothly until I come to the 'Install' tab.

It gets stuck at 0% displaying below:


Installation is incomplete.
Check the console log for errors before trying again.

------------------- 

Console Log

Starting Magento installation:

File permissions check...
Enabling Maintenance Mode...
Installing deployment configuration...

------------------- 

 


Why this could be?  Any ideas?  I am about to go crazy. Smiley Sad

Thank you in advance guys.

3 REPLIES 3

Re: Magento Installation Stuck at 0%

Hello,

 

Try to install Magento with command line:

http://devdocs.magento.com/guides/v2.0/install-gde/install/cli/install-cli.html

 

 

Maybe it will display some error

 

 

Stanislav

Re: Magento Installation Stuck at 0%

Hi!

I can't install magento2 successfully first was permissions (solved) after that stuck on x% (solved adding load time) and now when I try to log in on magento it does not seems ok the administrator It just looks like links what can I do? 

 

Plase someone. Regards

Re: Magento Installation Stuck at 0%

Hello,

 

Delete all files in the pub/static directory except the .htaccess file.

 

Then modify two files:

vendor/magento/framework/Filesystem/DriverInterface.php
line 20

    const WRITEABLE_DIRECTORY_MODE = 0755;

 

line 25

    const WRITEABLE_FILE_MODE = 0644;

 


lib/internal/Cm/Cache/Backend/File.php
lines 50-51

'directory_mode' => 0755,
'file_mode' => 0644,

 


to make it temporarily set 0755 0644 permissions.

 

Then refresh magento cache.

 


If it works then you should set up permissions correctly:

http://devdocs.magento.com/guides/v2.0/install-gde/prereq/apache-user.html#install-update-depend-use...

 

 

Stanislav