I’ve re-installed the blogroll to the sidebar using a PHP include instead of the JavaScript which should help a bit with cutting down on page delays due to Blogrolling.com being overwhelmed. I’ve also cleaned it up a bit removing blogs that are dead or that I don’t really read anymore.
Just a short note to explain the sudden increase in length of the sidebar.
Does BR provide the php code you used? If not, mind posting it?
Nevermind, that code would be:
<?PHP
//replace the value of $url with your own link from the code generator
$url = “http://rpc.blogrolling.com/display_raw.php?r=URL”;
if($my_blogroll = @fopen(”$url”, “r”)){
while(! feof($my_blogroll)){
$blogroll = fgets($my_blogroll, 255);
echo “$blogroll”;
}
}else{
echo “ERROR: $url is currently inaccessible”;
}
?>
Yep, that’s pretty much it. I’m not sure if it’ll make a big difference, but I’m willing to give it a shot.