skip to Main Content

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.

3

Answers


  1. 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.

    Login or Signup to reply.
  2. 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
    Login or Signup to reply.
  3. 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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search