I know there millions of topics on here, I've searched through them but none answer my question.
I've created the two files and they work but the php include doesn't show the file.
Any help appreciated.
I know there millions of topics on here, I've searched through them but none answer my question.
I've created the two files and they work but the php include doesn't show the file.
Any help appreciated.
VR|46
Post the code(s) you have.
Radio_config.phpCode:<?php include("Radio_stats.php"); ?>
Radio_stats.phpCode:<?php ////////////////////////////////////////////////////////////////////////////////////////////// // 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 = "Radio"; // Default station name to display when server or stream is down $scip = "joshedwards.cast-hosting.com"; // ip or url of shoutcast server (DO NOT ADD HTTP:// don't include the port) $scport = "8400"; // port of shoutcast server $scpass = "disclosed"; // password to shoutcast server //End configuration ?>
Code:<?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.' 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> Server Name:</b> '.$servertitle.'</font></p> <font face="arial" size="2"><b> Listeners:</b> '.$currentlisteners.' / 500</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>Radio Server Is Offline</title> </head> <body text="" bgcolor=""> Server Offline! </body> </html>'; } ?>
Last edited by iAdam; 13-08-2008 at 08:48 PM.
VR|46
Does it work when you goto radio_stats.php. Does your host allow fsockopen to be used?
It works when I go tot he url yes, it's jsut the php include that doesn't work.
VR|46
Are you sure the radio stats file is in the same folder as the page youre including it on?
add that under <?php on the include. And post back.PHP Code:error_reporting(E_ALL);
The include doesn't even appear on the webpage.
www.a-smith.org/wickedfriends
that's where I'm doing this.
VR|46
Okay, i noticed you have this.
Your including config_radio.php, and you say that your config file is called.Code:<?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.' 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> Server Name:</b> '.$servertitle.'</font></p> <font face="arial" size="2"><b> Listeners:</b> '.$currentlisteners.' / 500</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>Radio Server Is Offline</title> </head> <body text="" bgcolor=""> Server Offline! </body> </html>'; } ?>
radio_config.php, try changing the include to radio_config.php
Hope this helps?![]()
Want to hide these adverts? Register an account for free!