Community Forums Today's Posts     Member List     Archive    
Page 3 of 11 FirstFirst 12345 ... LastLast
Results 31 to 45 of 156
  1. #31
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    New Version online, works with all TS3 Versions and new functions:

    New Features in 0.9.1

    * More optical customizing
    * Welcomemessage as image roll-over text
    * Possible to cut user and channel names
    * Show User online / max User
    * XHTML & HTML 5 valid


    I search for a english translater, becaus I know my English descriptions are not very good.

  2. #32
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    70
    Error when Server is offline (0.9.3)

    Code:
    ts_func.php (167): Uninitialized string offset: 0
    When i activate the Name-Cut feature then every User is shown as there Name is cutted.
    Last edited by Polli; 24-12-2009 at 03:42.

  3. #33
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    Quote Originally Posted by Polli View Post
    Error when Server is offline (0.9.3)

    Code:
    ts_func.php (167): Uninitialized string offset: 0
    When i activate the Name-Cut feature then every User is shown as there Name is cutted.

    fix in newversion 0.9.5

  4. #34
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    New Features in 0.9.6
    • Statistic Box
    • Sort Player (Server Admins @ Top)

  5. #35
    Join Date
    Feb 2008
    Location
    /dev/null
    Posts
    14

    After Serverupdate, php query not working

    Hi

    i just updated from beta1 to beta8.

    my php script queries the server like this:

    PHP Code:
    $plCMD "use sid=1 \nclientlist \nquit\n"
    But now, the response isn't the client list, it is just the text "TS3 " with the usal "error id=0 msg=ok" codeline.

    What is missing?

    ports haven't been changed
    YES, there are members on the ts

    what is going wrong?

  6. #36
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    70
    Hi Laire

    Thx for the new Version. I will install it soon. But we found a litte Bug.
    When Channelnames or other Names are lokking like This

    •·´¯` Privat/Admin ´¯`·•

    Then the viewer will show

    •amp;�amp;�amp;�` Privat/Admin amp;�amp;�`amp;�•

    Can you fix this?

    And the sort of Player seems to be not working? The Players are above the Admins
    Last edited by Polli; 26-12-2009 at 00:56.

  7. #37
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    Quote Originally Posted by Polli View Post
    Hi Laire

    Thx for the new Version. I will install it soon. But we found a litte Bug.
    When Channelnames or other Names are lokking like This

    •·´¯` Privat/Admin ´¯`·•

    Then the viewer will show

    •amp;�amp;�amp;�` Privat/Admin amp;�amp;�`amp;�•

    Can you fix this?

    And the sort of Player seems to be not working? The Players are above the Admins
    Für diese Sonderzeichen erstmal gefixed. Muss noch ne Lösung für alle anderen finden

  8. #38
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    70
    Fine

    But there is again an offline Error.

    Code:
    ts_func.php (188): Uninitialized string offset: 0
    this shows when server is offline.

    Since you build in the fixes for the Wrong Signs the Viewer loads slower than before. Isnt it a Charset or UTF-8 Problem?

    BTW: ScP currently working on a PHP framework http://forum.teamspeak.com/showthread.php?t=48162
    Last edited by Polli; 26-12-2009 at 12:53.

  9. #39
    Join Date
    Dec 2009
    Location
    Europe
    Posts
    184

  10. #40
    Join Date
    Feb 2008
    Location
    /dev/null
    Posts
    14
    This is weird.
    I downloaded your ts3 viewer and it looks exactly like mine. i also use fputs, fgets and mine doesn't work. (returns only "TS3" as answer)
    i didn't test the ts3 class in this thread, but what i red from the others, it seems to send a valid query with a correct response.

    PHP Code:
    $TS3Connection = @fsockopen($vbulletin->options['ts2live_server_address'], 

    if (!
    $TS3Connection) {
        
    $ts2live_serverStatus 0;
        
    $ts2live_output['playerlist']=$vbphrase['ts_offline'];
        
    $ts2live_output['player']=0;
    }
    else
        {
        
    $ts2live_serverStatus 1;
        
    $ts2live_playerList = array();

        
    $plCMD "use sid=1 \nclientlist \nquit\n";

        
    fputs($TS3Connection$plCMDstrlen($plCMD));

        
    $raw '';
        while(
    $userdata fgets($TS3Connection4096)) {
            
    $raw .= $userdata;
        }
        
    // Cut out header...
        
    $raw explode("error id=0 msg=ok",$raw); 
    i don't get it...

  11. #41
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    70
    I found a little Bug. Password-protected channels are shown as normal channels.

    I have downgraded to 0.9.6 becouse of long loadtime in 0.9.7

  12. #42
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    Quote Originally Posted by Radon View Post
    This is weird.
    I downloaded your ts3 viewer and it looks exactly like mine. i also use fputs, fgets and mine doesn't work. (returns only "TS3" as answer)
    i didn't test the ts3 class in this thread, but what i red from the others, it seems to send a valid query with a correct response.

    PHP Code:
    $TS3Connection = @fsockopen($vbulletin->options['ts2live_server_address'], 

    if (!
    $TS3Connection) {
        
    $ts2live_serverStatus 0;
        
    $ts2live_output['playerlist']=$vbphrase['ts_offline'];
        
    $ts2live_output['player']=0;
    }
    else
        {
        
    $ts2live_serverStatus 1;
        
    $ts2live_playerList = array();

        
    $plCMD "use sid=1 \nclientlist \nquit\n";

        
    fputs($TS3Connection$plCMDstrlen($plCMD));

        
    $raw '';
        while(
    $userdata fgets($TS3Connection4096)) {
            
    $raw .= $userdata;
        }
        
    // Cut out header...
        
    $raw explode("error id=0 msg=ok",$raw); 
    i don't get it...



    Did you set the server timeout to 2?

    And try to send the commands separate.

  13. #43
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    all fixed ;-)

  14. #44
    Join Date
    Feb 2008
    Location
    /dev/null
    Posts
    14
    i did send the commands seperately
    PHP Code:
        $plCMD = array();
        
    $plCMD[] = "use sid=1\n";
        
    $plCMD[] = "clientlist\n";
        
    $plCMD[] = "quit\n";

        foreach (
    $plCMD AS $plx)
            {
            
    fputs($TS3Connection$plxstrlen($plx));
            }

        
    $raw '';
        while(
    $userdata fgets($TS3Connection4096)) {
            
    $raw .= $userdata;
        } 
    The result:

    Code:
    TS3 error id=0 msg=ok
    this is everything.

    again, yes there are 2 persons in the ts at the moment.

  15. #45
    Join Date
    Dec 2009
    Location
    Germany
    Posts
    56
    Try to catch the repeat in the foreach, it seems like you get only the last row

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Installation of TS3 32 bit and 64 versions
    By Kratos in forum Windows
    Replies: 16
    Last Post: 29-01-2010, 19:41
  2. Diverse Fragen zum TS3
    By CreiX in forum General Questions
    Replies: 10
    Last Post: 20-10-2008, 19:24
  3. TS3 built into other products?
    By [HJ]-Petz in forum [TeamSpeak 2] General Questions
    Replies: 3
    Last Post: 21-05-2008, 05:36
  4. Whither TS3?
    By ender24 in forum [TeamSpeak 2] General Questions
    Replies: 1
    Last Post: 15-06-2007, 20:24

Posting Permissions

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