PDA

View Full Version : Radio Stats Help



Lysine
19-12-2005, 10:16 AM
When someone is Dj'in the stats say that it is offline.
This is the code i use :-
config_radio.php

<!--p
//////////////////////////////////////////////////////////////////////////////////////////////
// Dinghy Radio Stats Information
// Grabs the xml from your radio server and displays it in a iframe that refreshes every 30 seconds.
// ©Daniel Brown www.gmtt.co.uk
//////////////////////////////////////////////////////////////////////////////////////////////
//Configuration
$scdef = "Habbolaugh"; // Default station name to display when server or stream is down
$scip = "24.224.184.169"; // ip or url of shoutcast server (DO NOT ADD HTTP:// don't include the port)
$scport = "****"; // port of shoutcast server
$scpass = "*****"; // password to shoutcast server
//End configuration

-->
and this is radio_stats.php :-

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta name="Author">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css"><!--
body {
background-color: #E59E0F;
}
-->
<!--
body {scrollbar-3dlight-color:#E59E0F;
scrollbar-arrow-color:white;
scrollbar-track-color:#E59E0F;
scrollbar-darkshadow-color:#E59E0F;
scrollbar-face-color:#E59E0F;
scrollbar-highlight-color:#E59E0F;
scrollbar-shadow-color:#E59E0F}
--></style>
<script language="JavaScript" type="text/javascript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>
<body>
</body>
</html>
<?php
// Shoutcast Server Stats
// Parses shoutcasts xml to make an effective stats thing for any website
// ©2004-2005 Daniel Brown http://www.gmtt.co.uk
// Please refer to the readme file for use.
include('config_radio.php'); //you may edit this path to fit your server environment otherwise leave it alone
$scfp = fsockopen("$scip", $scport, &$errno, &$errstr, 30);
if(!$scfp) {
$scsuccs=1;
echo''.$scdef.' HabboLaugh is Offline';
}
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);
}
################################################## ################################################## ##################
/////////////////////////part 1 \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//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
################################################## ################################################## ##################
################################################## ################################################## ##################
/////////////////////////part 2\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//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($streamstatus == "1"){
//you may edit the html below, make sure to keep variable intact
echo'
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META HTTP-EQUIV="REFRESH" CONTENT="30;URL=radio_stats.php">
<link rel=stylesheet href="" type="text/css">
<title>'.$scdef.'</title>
</head>

<body text="verdana" bgcolor="#FFFFFF">




<p align="center"><center>

<font face="arial" size="2"><b>&nbsp;Server Name:</b>&nbsp;'.$servertitle.'</font></p>
<font face="arial" size="2"><b>&nbsp;Listeners:</b>&nbsp;'.$currentlisteners.' / 25</font></p>

<font face="verdana" size="2" color=""><b>

Current Song:</b> '.$song[0].'</font></p>
<b>


<font face="arial" size="2">
Past Songs:</font></b>
<font color=""><font face="verdana" size="2">
<p align="center">
<b>1.</b> '.$song[1].'<BR>
<b>2.</b> '.$song[2].'<BR>
<b>3.</b> '.$song[3].'<BR>
</font>
<BR>
</p></p>
</body>

</html>';
}
if($streamstatus == "0")
{
//you may edit the html below, make sure to keep variable intact
echo'
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META HTTP-EQUIV="REFRESH" CONTENT="30;URL=radio_stats.php">
<link rel=stylesheet href="" type="text/css">
<title>HabboLaugh Is Offline</title>
</head>

<body text="" bgcolor="">
HabboLaugh Is Offline!
</body>

</html>';
}
?>


+ Rep if you can help :)

Lysine
19-12-2005, 02:33 PM
Any1 Help?

Luckyrare
19-12-2005, 02:37 PM
Check this...

http://YOUR IP:YOUR PORT

If it doesnt show your stats there then its your radio "_"

Lysine
19-12-2005, 02:50 PM
In the Config_radio.php?

Luckyrare
19-12-2005, 03:05 PM
In your browser...

ED::
19-12-2005, 05:16 PM
r u usin winamp coz u hav 2 enable track updates

Lysine
19-12-2005, 05:18 PM
yup i am.
how do i do that?

ED::
19-12-2005, 05:24 PM
http://www.habbo-nation.co.uk/sc.gif

does it work with other djs?

Lysine
19-12-2005, 05:26 PM
Nope.
If you go on my site when some1 is dj'in it says the radio server is offline
www.habbolaugh.tk
go on now some1 is dj'in.

ED::
19-12-2005, 05:34 PM
dunno m8 soz then, try makin em again from the habbox ones

Lysine
19-12-2005, 05:38 PM
I did get it from habbox lol.

:Blob
19-12-2005, 08:02 PM
Did you get it from my tutorial ?

Lysine
19-12-2005, 10:45 PM
Did you get it from my tutorial ?
Yup.
It still aint working.

madchild24
19-12-2005, 11:06 PM
lysine how come ur server has same ip as mine?
24.224.184.169
or can hosts run more then one account of same server?

Luckyrare
19-12-2005, 11:47 PM
Because you use the port like ip: port

So the IP is the servers address and the port is where it finds the info so to speak.

madchild24
20-12-2005, 12:09 AM
lol kk oh adn lysine pm on habbo ill sort it out for ya

Want to hide these adverts? Register an account for free!