WordPress Support – Slow Login
I just noticed one time that I want to post new item on my wordpress blog site, it takes me 1 minutes and 30 seconds before loging-in to my site. Luckily I found a solution from wordpress support that I need to remove some lines on the index.php of wp-admin folder.
It’s the RSS feeds it tries to pull in. Edit the index.php file in wp-admin, and change all the three lines that start:$rss = @fetch_rss(…
To be:
$rss = “”;
Kudos to WordPress Support especially to brianthewise!
No comments yet