cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2.3.4 problem z panelem admina, wieczny Loading.

Magento 2.3.4 problem z panelem admina, wieczny Loading.

Cześć, zainstalowałem na świeżo magento 2.3.4 na win 10. Wszystko chyba działa (powoli ze powoli, ale działa), ale po zalogowaniu do panelu admina mam taki obraz ( https://ibb.co/0YJVLR3 ). Użyłem juz komendy php bin/magento setup:install ale nic nie dało.

 

 

3 REPLIES 3

Re: Magento 2.3.4 problem z panelem admina, wieczny Loading.

Hi @maciejmodl497d 

Make sure that magento cache is enabled.

Or you can do using below command.

php bin/magento cache:enable


I hope it will help you!

Re: Magento 2.3.4 problem z panelem admina, wieczny Loading.

Hi, thanks for answer. I use this command and i have this answer

There is nothing to change in cache status

I still have a problem with the admin panel.

Re: Magento 2.3.4 problem z panelem admina, wieczny Loading.

Hi @maciejmodl497d 

It seems cache is enabled.

Check the browser console, there might be some errors.


Try the below commands in sequence after proper permission.

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!