Could somebody supply me with a decent radio stats script, And a tutorial on how to instal.. +rep.
Could somebody supply me with a decent radio stats script, And a tutorial on how to instal.. +rep.
Btw, I know all my radio details.
Iv already looked at them, I cant get any of them working thats why I need a tutorial
I install a DJ panel with the script with it for free, cos im bored...?
I already have the DJ panel setup, And cant be bothered installing another as i have already timetable and requests and stuf on the page, Also it didnt come with the script.
Create a file called:
config_radio.php
Add the codes to the pages. Change the details to your radio stuff.PHP Code:<?php
//Configuration
$scip = "127.0.0.1"; // ip or url of shoutcast server
$scport = "8000"; // port of shoutcast server
$scpass = "changeme"; // password to shoutcast server
//End configuration
?>
And create this file:
stats.php
http://www.habboxforum.com/showpost....81&postcount=3PHP Code:<head>
<META HTTP-EQUIV="REFRESH" CONTENT="30">
</head>
<?php
include('config_radio.php');
$scfp = @fsockopen("$scip", $scport, &$errno, &$errstr, 10);
if(!$scfp) {
$scsuccs=1;
echo'<strong>Server is offline</strong>';
}
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);
}
$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);
//echo'$'.$scphp.' = '.$$scphp.'<br>';
$y++;
}
$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++;
}
fclose($scfp);
}
if($streamstatus == "1"){
echo'
<strong>Current DJ</strong>: '.$servertitle.'<br/>
<strong>Current Listeners</strong>: '.$currentlisteners.'<br/>
<strong>Current Song</strong>: '.$song[0].';
}
if($streamstatus == "0")
{
echo'<strong>Radio is offline</strong>;
}
?>
Thanks to Jack120
Although it's possible fsockopen is disabled on your hosting
Isnt workin
Fsocket functions
Enabled
Last edited by -Adam; 19-12-2008 at 09:32 PM.
Change stats.php to
and whats the error.PHP Code:<head>
<META HTTP-EQUIV="REFRESH" CONTENT="30">
</head>
<?php
include('config_radio.php');
$scfp = fsockopen("$scip", $scport, &$errno, &$errstr, 10);
if(!$scfp) {
$scsuccs=1;
echo'<strong>Server is offline</strong>';
}
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);
}
$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);
//echo'$'.$scphp.' = '.$$scphp.'<br>';
$y++;
}
$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++;
}
fclose($scfp);
}
if($streamstatus == "1"){
echo'
<strong>Current DJ</strong>: '.$servertitle.'<br/>
<strong>Current Listeners</strong>: '.$currentlisteners.'<br/>
<strong>Current Song</strong>: '.$song[0].';
}
if($streamstatus == "0")
{
echo'<strong>Radio is offline</strong>;
}
?>
Want to hide these adverts? Register an account for free!