hallo meschien dat 1 van jullie mij kan ondersteunen ik heb een php script op mijn website staan wat eerder altijd werkte maar sins vanmorgen niet meer doet volgens de webhost moet ik een update script hebben die 5.3 onder steunt die van mij was veroudert meschien kunnen jullie mij hiermee helpen .....
// de header, hij refreshed de pagina na zoveel seconden,
// de URL is een optie hoef je niet te gebruiken dus.
header("Refresh: ".$s."; URL=".$u);
// $s = voor het aantal seconden ;
// $u = voor het bestand dat je wil openen;
// voorbeeld:
header("Refresh: 45; URL=http://www.radiodoremi.nl//radio-strats/radio_stats.php");
// deze refresh zal in 5 seconden deze pagina vervangen voor www.phphulp.nl
// Alle code dat achter de refresh staat wordt wel gedaan.
// tot de X aantal seconden voorbij zijn, dus:
echo('');
// dit word 45 seconden lang getoond en dan wordt u doorverbonden :D
?>
<?php
// Shoutcast Server Strats
// 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.
// Add-On MAXLISTNERS insead of the / 10 MAXLISTENERS which was set, and the BITRATE add-on.
// Online and Offline graphics, and add-on code.
// Better HTML Script.
// Do Not Try To Edit This Only Unless You Know What You're Doing!!!!!!!
include('config_radio.php');
$scfp = fsockopen("$scip", $scport, &$errno, &$errstr, 30);
if(!$scfp) {
$scsuccs=1;
echo''.$scdef.' 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", "MAXLISTENERS", "BITRATE");
$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 http-equiv="Content-Type" content="text/html; charset=windows-1252">
<link rel=stylesheet href="" type="text/css">
<title>'.$scdef.'</title>
</head>
<body text="" bgcolor="#000000">
<div style="position:absolute; top:7; left:2;">
<FONT size="3" face="arial" color="#FFFFFF">
<p align="center"><center>
<img src="online.jpg"><br>
<b>DJ:</b> '.$servertitle.'<br>
<b>LUISTERAARS:</b> '.$currentlisteners.'<br>
<b>U HOORT NU:</b> '.$song[0].'</p><b>
</p>
</body>
</html>';
}
if($streamstatus == "0")
{
//you may edit the html below, make sure to keep variable intact
echo'
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<link rel=stylesheet href="" type="text/css">
<title>Storing</title>
</head>
<body text="" bgcolor="black">
<center>
<img src="offline.jpg">
</body>
</html>';
}
?>
dit is het stukje wat de webhost mij stuurde
Net even gekeken en het script wat jij hebt is verouderd.
Wij hebben vanmorgen de php versie geupdate en daar wordt de Call-time niet meer ondersteund wat jij het beste kunt doen is op zoek gaan naar een versie van het script die php 5.4 ondersteund
2.785 views