Hello,
I am desperately seeking help. I have a website which I made for a friend using your MyTree theme. I have spent a lot of time on it, and really want it to work.
It is a shoutcast radio with a constant audio stream.
I have written a php code to get the shoutcast song playing and display on the website so that every time the song changes, the block in the right sidebar changes the song display.
I have enabled a block refresh module which is here http://drupal.org/node/255745
The problem I have is that although I can see the block is definitely refreshing and that it is getting the new content, it is not printing this new content in the block.

When I change to Garland theme everything is great so it is definitely something to do with the theme.

Would anyone know what part of the theme could stop this from working? How do I change this?

The block code I am using is:

<?php
/*

Now Playing PHP script for SHOUTcast

This script is (C) MixStream.net 2008

Feel free to modify this free script 
in any other way to suit your needs.

Version: v1.1

*/


/* ----------- Server configuration ---------- */

$ip = "cazam.eu";
$port = "8228";

/* ----- No need to edit below this line ----- */
/* ------------------------------------------- */
$fp = @fsockopen($ip,$port,$errno,$errstr,1);
if (!$fp) 
	{ 
	echo "Connection refused"; // Diaplays when sever is offline
	} 
	else
	{ 
	fputs($fp, "GET /7.html HTTP/1.0\r\nUser-Agent: Mozilla\r\n\r\n");
	while (!feof($fp))
		{
		$info = fgets($fp);
		}
	$info = str_replace('</body></html>', "", $info);
	$split = explode(',', $info);
	if (!($split[1]) )
		{
		echo "The current song is not available"; // Displays when sever is online but no song title
		}
	else
		{
		$title = str_replace('\'', '`', $split[6]);
		$title = str_replace(',', ' ', $title);
		$title = "$title\n";
                $myFile = "sites/default/files/tmp/last.song";
		$fh = fopen($myFile, 'r');
		$cursong = fgets($fh);
		$lastsong = fgets($fh);
		fclose($fh);
                if ($title != $cursong) {
        	        $lastsong = $cursong;
        	        $cursong = $title;
        	        $fh = fopen($myFile, 'w');
			fwrite($fh, $cursong);
			fwrite($fh, $lastsong);
			fclose($fh);
        	}
                echo "<b>Now:</b> $cursong<br><br>";
                echo "<b>Previous:</b> $lastsong<br>";
		}
	}
?>

Thanks,
Carrie