I created a new shop, but:
- when I try to open the admin page of my new shop I see this loading mask indefinitely and even if I try to delete it manually the page does not work;
- I don't see the icons in the background;
- in the background I see a shop already initialized, why?
There might be some issue with the deployment.
Run the below commands in sequence once.
find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento
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
I hope it will help you!
Thanks @Vimal Kumar for the reply, but I didn't say that I am trying to install it on a windows system.
What commands could I type to fix errors?
@Vimal Kumar wrote:
There might be some issue with the deployment.
Run the below commands in sequence once.
find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento
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
I hope it will help you!
Hi @giacomofra575a,
You could try the following commands and check again.
php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:flush chmod -R 777 var pub generated
Let me know if you need further assistance.
Hope it helps!
_____________
If issue solved, Click Kudos & Accept as Solution.