slow wpmu dashboard
I have spent today over two hours to find out why my wpmu login (and dashboard) is so slow. For all of You it was wrongly set “Admin Notice Feed” in “Site Admin”/”Options”. bellow a patch that will give extended note about wrong url.
733c733,735
< $rss = @fetch_rss( $url );
—
> $rss_time = time();
> $rss = fetch_rss( $url );
> $rss_time = time() – $rss_time;
752c754,758
< echo “<div id=’update-nag’>Your feed at ” . wp_specialchars( $url ) . ” is empty.</div>”;
—
> if ($rss_time < 30) {
> echo “<div id=’update-nag’>Your feed at ” . wp_specialchars( $url ) . ” is empty.</div>”;
> } else {
> echo “<div id=’update-nag’>Your feed url ” . wp_specialchars( $url ) . ” seems to be broken. Go to \”Site Admin\”/\”Options\” and corect \”Admin Notice Feed\”</div>”;
> }
I have also filled a request on wpmu forums to add it to include this patch in wpmu.