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.
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!
Problem remains.
Still nothing.