Hi instaled Magento 2 and when I´m trying to open a magento store and admin panel, I´m getting following errors:
To open a magento store i´m getting this error:
To open admin panel I´m getting this error:
Regards,
You need to run deployment command,
php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento cache:flush
For admin panel, you need to check admin URI from app/etc/env.php
check where frontName is your admin url,
'backend' => array ( 'frontName' => 'webadmin', )
Your admin URL will be,
http://{storefronturl}/webadmin
Hi @Plat
Can you please confirm that you have .htaccess file in the root directory of your magento 2 ?
Also can you remove generated directory then run below commands :
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
php bin/magento cache:clean
php bin/magento cache:flush
Hope it helps !!
If you already fire this command
php bin/magento setup:static-content:deploy
and it doesn't help you , then fire with store code
php bin/magento setup:static-content:deploy store_code ex.en_US
OR
If your site running on apache server and `Sign Static Files` is yes in store->configuartion->Advanced->Developer->Static File Setting
then may be you are missing htaccess file in `pub\static` directory
you can get sample .htaccess file at here https://github.com/magento/magento2/blob/2.2/pub/static/.htaccess
If my answer helps you then hit on kudos button and mark as accepted