Question

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

slow

Was it helpful?

Solution

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

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top