If your WordPress backend wp-admin running extremely slow and if it takes really long or forever to load then below troubleshooting will surely help:
- There must have been a parameter that was not completed. Hence, manually call /wp-admin/upgrade.php through browser.
- Try decativating all plugins. If that resolves the issue, reactivate each one individually until you find the culprit.
- Try switching to the wordpress default theme ( Twenty Fifteen theme ) to rule-out a theme-specific issue.
- Download a fresh copy of WordPress and 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 Heartbeat Control 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 - 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 hosting service provider.
- If you have access to your php.ini file, change the line in php.ini
Please don’t forget to comment if this saves your day 🙂
No comments:
Post a Comment