Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wordpress Dashboard not loading

Tags:

php

wordpress

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

like image 773
Jonathan Thurft Avatar asked Dec 16 '13 14:12

Jonathan Thurft


People also ask

Why WordPress dashboard is not opening?

Common reasons why you can't access wp-adminYou're being blocked by your security plugin. You changed the WordPress login URL. Your WordPress memory limit is too low. There's a problem with your WordPress site (White Screen of Death, 500 Internal Server Error, etc.)

Why is my WordPress dashboard empty?

In many cases, a blank WordPress admin panel results from code errors in your currently active theme. You can resolve this by disabling the theme. However, since you cannot access your dashboard to do this, you have to disable your theme manually using FTP.


1 Answers

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

like image 89
alfredo chuc Avatar answered Sep 28 '22 06:09

alfredo chuc