Jonathan Thurft
Jonathan Thurft

Reputation: 4173

Wordpress Dashboard not loading

Wordpress is installed in one site that I am working on. Suddenly in the admin panel i cant see any of the pan pages. I can click on the left side menu but nothing displays and there are no errors when i turn wordpress debug mode on.

I have searched around but I can not find a solution to my problem. any ideas on how to debug this or what could be the issue?

enter image description here

Upvotes: 6

Views: 2775

Answers (3)

Manish Patel
Manish Patel

Reputation: 1957

Try adding define('SCRIPT_DEBUG', true); to the bottom of your wp-config.php file (just before the require_once line).

Upvotes: 0

alfredo chuc
alfredo chuc

Reputation: 129

There is a bug in WordPress 3.3.1 causing the issue. It may affect other versions as well.

To solve the issue you can update WordPress to the current stable release and do integration testing afterwards. Or you can do a quick bug fix.

To fix the bug:

  1. Open file blog/wp-admin/includes/screen.php in your favorite text editor.
  2. On line 706 find the following PHP statement: <?php echo self::$this->_help_sidebar; ?>
  3. Replace it with the statement: <?php echo $this->_help_sidebar; ?>
  4. Save your changes.

Hope it helps you.

Link info: https://wordpress.stackexchange.com/questions/127427/how-to-fix-empty-dashboard-issue-in-wordpress

Upvotes: 8

Kausha Mehta
Kausha Mehta

Reputation: 2928

To fix the bug:

  • Open file blog/wp-admin/includes/screen.php in your favorite text editor.
  • On line 706 find the following PHP statement: <?php echo self::$this->_help_sidebar; ?>
  • Replace it with the statement:<?php echo $this->_help_sidebar; ?>
  • Save your changes.

Hope it helps you.

Upvotes: 2

Related Questions