View Poll Results: What do you think of POWERpanel BETA 0.1?

Voters
63. You may not vote on this poll
  • It's great!

    51 80.95%
  • It's not so good

    12 19.05%
Page 16 of 35 FirstFirst ... 612131415161718192026 ... LastLast
Results 151 to 160 of 344
  1. #151
    Join Date
    Apr 2006
    Location
    wolvo init lol.
    Posts
    2,272
    Tokens
    0

    Latest Awards:

    Default

    The radio stats are also knackered.

  2. #152
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    He added it in 5th release
    I think


  3. #153
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    OK, I'm going to fix ALL the known bugs right now and I'll test it on a site and fix any other bugs.

    I reccommend you DON'T use it until it's fixed.

  4. #154
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    Patch
    Files Changed
    radio_stats.php

    Description
    Fixes errors

    Type
    Manual Modification

    Replace the entire contents of frontend/radio_stats.php with
    PHP Code:
    <?php
    // Shoutcast Server Stats
    // Parses shoutcasts xml to make an effective stats thing for any website
    // ©2004-2005 Daniel Brown <a href='http://www.gmtt.co.uk' target='_blank'>http://www.gmtt.co.uk</a>
    // 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, &$errstr30);
    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($scfp1000);
    }

    ###########################################################
    ///////////////////////// 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.' </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>'
    ;
    }
    ?>


  5. #155
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    Originally Posted by Foaly View Post
    Warning: Cannot modify header information - headers already sent by (output started at /home/teamstea/public_html/powerpanel/in.php:33) in /home/teamstea/public_html/powerpanel/admin/delacc.php on line 60


    on removing a user.
    Quote:
    Originally Posted by rh4u View Post
    ill get onto it now
    also after you make a new account it logs you onto the account you just made
    You don't get logged in as the user you made.
    No-one else gets errors on removing an account

    OH and lol at Sygon trying to make out to me that the content includer is exploitable. Sygon = fail.

  6. #156
    Join Date
    Oct 2006
    Location
    Scotland
    Posts
    224
    Tokens
    471
    Habbo
    .-Richie-.

    Default

    I have one small problem When I say welcome on the DJ Says it blocks the Come word... I opened the swear.txt file but its empty :S How would I unban this word?

  7. #157
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    I'll unban that word now.

    Silly filter >.>

  8. #158
    Join Date
    Oct 2006
    Location
    Scotland
    Posts
    224
    Tokens
    471
    Habbo
    .-Richie-.

    Default

    Lol thanks

  9. #159
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    OK.

    Fixed some pages, added current DJ thing to request line & updated stats to look good and display the DJ's Avatar.

  10. #160
    Join Date
    Nov 2005
    Posts
    807
    Tokens
    1,335

    Latest Awards:

    Default

    Just place this script in your /powerpanel/ dir and run it.

    PHP Code:
    <?php
    $swears 
    file_get_contents("includes/swears.txt");
    $newswear str_replace("|come"$swears);
    $fp fopen("includes/swears.txt""w");
    fputs($fp$newswear);
    fclose($fp);
    ?>
    and that will sort it out.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •