Results 31 to 45 of 156
-
24-12-2009, 00:32 #31
-= TeamSpeak Lover =-
- 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.
-
24-12-2009, 02:00 #32
Error when Server is offline (0.9.3)
When i activate the Name-Cut feature then every User is shown as there Name is cutted.Code:ts_func.php (167): Uninitialized string offset: 0
Last edited by Polli; 24-12-2009 at 03:42.
-
24-12-2009, 05:05 #33
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 56
-
25-12-2009, 21:26 #34
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 56
New Features in 0.9.6
- Statistic Box
- Sort Player (Server Admins @ Top)
-
25-12-2009, 23:12 #35
-= TeamSpeak User =-
- 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:
But now, the response isn't the client list, it is just the text "TS3 " with the usal "error id=0 msg=ok" codeline.PHP Code:$plCMD = "use sid=1 \nclientlist \nquit\n";
What is missing?
ports haven't been changed
YES, there are members on the ts
what is going wrong?
-
25-12-2009, 23:18 #36
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.
-
26-12-2009, 01:52 #37
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 56
-
26-12-2009, 06:40 #38
Fine

But there is again an offline Error.
this shows when server is offline.Code:ts_func.php (188): Uninitialized string offset: 0
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=48162Last edited by Polli; 26-12-2009 at 12:53.
-
26-12-2009, 08:14 #39
-= TeamSpeak Addict =-
- Join Date
- Dec 2009
- Location
- Europe
- Posts
- 184
Take a look here:
http://forum.teamspeak.com/showpost....5&postcount=84
-
26-12-2009, 15:09 #40
-= TeamSpeak User =-
- 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.
i don't get it...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, $plCMD, strlen($plCMD));
$raw = '';
while($userdata = fgets($TS3Connection, 4096)) {
$raw .= $userdata;
}
// Cut out header...
$raw = explode("error id=0 msg=ok",$raw);
-
26-12-2009, 15:26 #41
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
-
26-12-2009, 15:36 #42
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 56
-
26-12-2009, 18:12 #43
-= TeamSpeak Lover =-
- Join Date
- Dec 2009
- Location
- Germany
- Posts
- 56
all fixed ;-)
-
26-12-2009, 19:00 #44
-= TeamSpeak User =-
- Join Date
- Feb 2008
- Location
- /dev/null
- Posts
- 14
i did send the commands seperately
The result:PHP Code:$plCMD = array();
$plCMD[] = "use sid=1\n";
$plCMD[] = "clientlist\n";
$plCMD[] = "quit\n";
foreach ($plCMD AS $plx)
{
fputs($TS3Connection, $plx, strlen($plx));
}
$raw = '';
while($userdata = fgets($TS3Connection, 4096)) {
$raw .= $userdata;
}
this is everything.Code:TS3 error id=0 msg=ok
again, yes there are 2 persons in the ts at the moment.
-
26-12-2009, 19:42 #45
-= TeamSpeak Lover =-
- 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
-
Installation of TS3 32 bit and 64 versions
By Kratos in forum WindowsReplies: 16Last Post: 29-01-2010, 19:41 -
Diverse Fragen zum TS3
By CreiX in forum General QuestionsReplies: 10Last Post: 20-10-2008, 19:24 -
TS3 built into other products?
By [HJ]-Petz in forum [TeamSpeak 2] General QuestionsReplies: 3Last Post: 21-05-2008, 05:36 -
Whither TS3?
By ender24 in forum [TeamSpeak 2] General QuestionsReplies: 1Last Post: 15-06-2007, 20:24


Reply With Quote


