Hi
I installed nicely magento 2 after lots of reading, connected it to the database of our webite (on OVH). I think I made a mistake still. Front page looks fine, but I when I try to log in as admin user to the Dashboard with correct user name and password, I can see the dashboard but with " a loop non stop on the screen (I can't do anything to the dashboard)..
Could the reason be that I create a admin user (name1234) different of the user I had create to get the keys on magento open source website (name)?
If yes, what shall I do;?
thank you very much
Hi @xavierkoutaa8e
Admin user name will not create any issue. There might be few errors in the browser console.
There might be some issue with the deployment.
Try the following command once:
find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento
You can use sudo as well.
Then try following commands once in sequence to re generations.
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
I hope it will help you!