Thor
Thor

Reputation: 308

Magento 1.9 Admin Dashboard Won't Load

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.

enter image description here enter image description here

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

Answers (3)

eCommerce Guru
eCommerce Guru

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

guruprasad ks
guruprasad ks

Reputation: 312

Maybe due to the following reason

  • The cookie domain in System -> Configuration -> Web -> Session Cookie Management doesn't match the actual site domain
  • Incorrect permissions on var/session, preventing session files from being saved

Upvotes: 0

alexpriftuli
alexpriftuli

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

Related Questions