i have this issue after i try to fix admin icon. Here is my problem can anybody suggest me some solution. I really appreciate it.
Hello @annq3sivn4281
Try to static deploy -
php bin/magento setup:static-content:deploy in the magento root directory
and set permission by below command:
sudo chmod -R 777 var/ pub/ generated/
It may help you!
Thank you.
You are not helping me at all, STOP IT!
Hello @annq3sivn4281 ,
This issue is caused because your static files (css/js) are not able to execute.
You can check in console log, your css/js files must going to 404, just open any of those in new window.
Now, check where you are pointing your domain, if it's pointing to docroot of project, then the static files URL must included "pub" in those, for ex : "https://LOCAL.DOMAIN.COM/pub/static/...."
in that case or vice versa, check your domain pointing and your static files path you have set.
Also share those details here and any static file generated path.
Hope it helps !
Honestly, i did not have this error at the beginning. I follow the step from Bhanu Periwal, he giuld me to remove some files from root, i follow those steps and this lead me that my admin page layout broken. So that is all my issue
Can you share what steps you have taken ?
if you are referring the above comment, that directly won't remove any file, you can run all the commands again and share output :
rm -rf generated/metadata/* generated/code/* var/cache/mage-* var/page_cache/mage-* var/view_preprocessed/* var/di/* pub/static/_* pub/static/frontend/ pub/static/adminhtml/ php bin/magento se:up php bin/magento se:di:co php bin/magento se:st:de -f php bin/magento c:f
let us know the results here.
oh okay, got the issue.
So you are not supposed to clear whole pub/static/ as there is a file (.htaccess) inside static folder which is required and which manages the static files url redirection etc.
You can do one new, setup a new demo project in your local, copy static folder from there and paste inside your current project pub/ folder and then rerun commands I shared above.
Hopefully it will resolve your problem