Reputation: 308
My Magento 1.9 Admin Dashboard won't load anything past the header... The customer facing side of the site seems to be working fine and I can login and log out of the Admin Panel, but I can't do much in the way of administration since none of the tabs will load.
There are no Javascript Errors in the Console, it just doesn't load.
I was trying to add a custom module without knowing what I was doing, so I'm pretty sure I'm the one who broke it, but I can't seem to find which file I messed up, let alone what part of it I messed up.
Any help would be appreciated.
Upvotes: 0
Views: 912
Reputation: 1
Usually new extension/modules are the culprit in these cases.
As highlighted by alex, you can disable the newly added module and clear all cache to make it work.
Glad you got it resolved.
Upvotes: 0
Reputation: 312
Maybe due to the following reason
Upvotes: 0
Reputation: 66
To be sure that your module is causing the problem, try disabling it from
app/etc/modules/VendorName_ModuleName.xml
inside the file put false where you can see <active>true</active>
Flush the cache and try. If it's a your module's issue, try looking to the logs.
Upvotes: 2