Every aspect of my dashboard is slow–it can take 30-60 seconds to get a list of pages, or to updated a post. Yet, the front end is fast.
I checked all the plugins–no problem there. I deactivated all the features of JetPack–no problem there.
I tried different browsers–no problem there.
I checked with my ISP and they confirmed there was no down time.
This problem is ongoing.
What makes WordPress dashboard slow and how do I fix it?
Thanks
Try this link:
Wordpress Support
It suggests these 7 steps about half way down:
-
Manually run /wp-admin/upgrade.php (visit it in your browser).
-
Try decativating all plugins. If that resolves the issue, reactivate each one individually until you find the cause.
-
Try switching to the Twenty Ten theme to rule-out a theme-specific issue.
-
Download WordPress again and delete then replace your copies of the /wp-admin/ and /wp-includes/ directories with fresh copies from the download.
-
Access your WordPress database via phpMyAdmin (most hosting providers offer this in their control panel), check all of the tables, and choose “Optimize tables” from the pull-down menu.
-
Try installing the Memory Bump plugin.
-
If nothing else works, try these methods to increase PHP’s memory allocation:
-
If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M:
memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
-
If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M
-
Try adding this line to your wp-config.php file:
Increasing memory allocated to PHP
define(‘WP_MEMORY_LIMIT’, ’64M’);
-
Talk to your host.