th@nks 4 reply, but i have still this error :
Code:
Fatal error: Call to undefined function: fetch_template() in /srv/www/htdocs/web1/html/shoutcast.php on line 68
here i paste the whole script :
PHP Code:
<?php
// Shoutcast Server Stats
// Parses shoutcasts xml to make an effective stats thing for any website
//Configuration
$scdef = "TEst FM"; // Default station name
$scip = "myipadress"; // ip or url of shoutcast server
$scport = "8000"; // port of shoutcast server
$scpass = "yourpass"; // password to shoutcast server
$maxusers = "32"; //max users for your server
//End configuration
$scfp = @fsockopen($scip, $scport, &$errno, &$errstr, 3);
if(!$scfp) {
eval("\$home['content'] .= \"" . fetch_template("adv_portal_shoutcast_off") . "\";");
}else{
if($scsuccs!=1){
fputs($scfp,"GET /admin.cgi?pass=$scpass&mode=viewxml HTTP/1.0\r\nUser-Agent: SHOUTcast Song Status (Mozilla Compatible)\r\n\r\n");
while(!feof($scfp)) {
$page .= fgets($scfp, 1000);
}
}
//define xml elements
$loop = array("STREAMSTATUS", "BITRATE", "SERVERTITLE", "CURRENTLISTENERS");
$y=0;
while($loop[$y]!=''){
$pageed = ereg_replace(".*<$loop[$y]>", "", $page);
$scphp = strtolower($loop[$y]);
$$scphp = ereg_replace("</$loop[$y]>.*", "", $pageed);
if($loop[$y]==SERVERGENRE || $loop[$y]==SERVERTITLE || $loop[$y]==SONGTITLE || $loop[$y]==SERVERTITLE)
$$scphp = urldecode($$scphp);
// uncomment the next line to see all variables
//echo'$'.$scphp.' = '.$$scphp.'<br>';
$y++;
}
//end intro xml elements
//get song info and history
$pageed = ereg_replace(".*<SONGHISTORY>", "", $page);
$pageed = ereg_replace("<SONGHISTORY>.*", "", $pageed);
$songatime = explode("<SONG>", $pageed);
$r=1;
while($songatime[$r]!=""){
$t=$r-1;
$playedat[$t] = ereg_replace(".*<PLAYEDAT>", "", $songatime[$r]);
$playedat[$t] = ereg_replace("</PLAYEDAT>.*", "", $playedat[$t]);
$song[$t] = ereg_replace(".*<TITLE>", "", $songatime[$r]);
$song[$t] = ereg_replace("</TITLE>.*", "", $song[$t]);
$song[$t] = urldecode($song[$t]);
$dj[$t] = ereg_replace(".*<SERVERTITLE>", "", $page);
$dj[$t] = ereg_replace("</SERVERTITLE>.*", "", $pageed);
$r++;
}
//end song info
fclose($scfp);
}
//display stats
if($scfp) {
if($streamstatus == "1"){
//you may edit the html below, make sure to keep variable intact
eval("\$home['content'] .= \"" . fetch_template("adv_portal_shoutcast") . "\";");
} else {
eval("\$home['content'] .= \"" . fetch_template("adv_portal_shoutcast_off") . "\";");
}
}
?>
i hade the eval twice, so i have tried also to change the eval below the server settings, but still not working.
gr33tz