cancel
Showing results for 
Search instead for 
Did you mean: 

Admin page loads forevever

Admin page loads forevever

This is ridiculous. Admin page loads forever. Cannot work.

 

Fresh install, clean machine.

 

I ve tried all solutions from Magento forum and nothing works.

 

So many users have the same problem and no solution.

 

Magento 1x was so better.

 

3 REPLIES 3

Re: Admin page loads forevever

Hi @christos_ntafos 

There might be some issue with deployment. Also check errors in browser console.

There may be some issue with permissions on the server in generations of static files. And make sure that you have ". htaccass" file in pub/static folder.


Try the following command to setup proper permission to magento directory.

 

find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento

After it run the following magento commands in the sequence.


Upgrade and compile command are optional.

chmod -R 0777 var/ pub/ generated/
rm -rf var/cache/* var/view_preprocessed/* generated/* pub/static/*
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento cache:flush
php bin/magento indexer:reindex
chmod -R 0777 var/ pub/ generated/

I hope it will help you!

Re: Admin page loads forevever

Problem remains.

 

Still nothing.

 

Re: Admin page loads forevever

@christos_ntafos Have you check the errors on console?

 

Thanks