Pergunta

Why Magento2 Admin Panel is too much slow and keeps on loading ?

slow

Foi útil?

Solução

Hope this three commands will solve your problem

php bin/magento se:up
php bin/magento setup:static-content:deploy -f
php bin/magento s:d:c

also enable the cache

php bin/magento cache:enable

or else try uninstall the theme

php bin/magento theme:uninstall

Outras dicas

whether you made any changes at backend code regarding functionality?

Enable caches. This can make your work more productive. :)

Try this

rm -rf var/cache/ generated/code pub/static/frontend pub/static/adminhtml
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy -f
php bin/magento setup:di:compile
sudo chmod -R 777 var/ pub/ generated/

This will fix the problem

Licenciado em: CC-BY-SA com atribuição
Não afiliado a magento.stackexchange
scroll top