How to fix empty dashboard issue in WordPress?
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.