Fix for – Admin Menu Not loading & Showing lot many JS issue in Magento 2

Admin Menu Not loading & Showing lot many JS issue in Magento 2:

Frontend website and admin is not loading properly once successfully install the magento 2. In this case if you see the source code of your website, seems css & js files path may be wrong. It will redirect to 404 page (or) it will not open (file not found). This issue because of file path is not set properly in DB. Now we have to manually want to set the path in DB.

Run below query &  check value is coming or not first

Select * from core_config_data where path like ‘dev/static/sign’;
If no record then found then manually  set the path in DB level. Run below query.
INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`) VALUES (‘default’, ‘0’, ‘dev/static/sign’);
After run the query clear cache & run the deploy command and check it will work. Your theme will reflect on frontend.

“Save Environment

2 thoughts on “Fix for – Admin Menu Not loading & Showing lot many JS issue in Magento 2”

Leave a Reply