Results 31 to 45 of 507
-
15-10-2002, 16:27 #31
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
Yeah, I still have to work on getting rid of the need for that file.
-
15-10-2002, 16:52 #32
-= TeamSpeak User =-
- Join Date
- Oct 2002
- Location
- DC
- Posts
- 4
OK, we had it working for a moment, when we opened up all ports on the TS2 server.
Then, when we locked it back down except for the supposed port (TCPQueryPort=51234), we get:
Any ideas? Is this the right port?Data unavailable.
TCPQueryPort may not be open.
-
15-10-2002, 16:56 #33
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
Yeah, that is the default TCPQuery port. If it is open, it should be working. Should have 8767 open as well, but this shouldn't be necessary for TCPQuery to work.
-
15-10-2002, 17:10 #34
-= TeamSpeak User =-
- Join Date
- Oct 2002
- Location
- DC
- Posts
- 4
Crud.. both of those ports are wide-open, but no luck.
If we open ALL ports, then it works.. when we go back to just those 2, we are locked out.
Dang, any more ideas?
-
15-10-2002, 17:32 #35
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
I don't have any at the moment, maybe someone else?
For an understand of what the script is doing...the server sends info like how many people are online, the server name, ip and ports, to webpost.php, this requires no ports. It then triggers the script to call back to the server through the TCPquery port and find out the usernames and channel names of the server and then stores this information in the database. This is the only tim that the tcpquery port is used, and really the only port that should need to be used by the script.
-
16-10-2002, 21:38 #36
server_ip-bug
Pls read my previous post with the timeout for fsockopen.
Another Bug:
$server_ip = getenv("HTTP_X_FORWARDED_FOR");
returns "123.4.5.678, 123.4.5.678" !
Two times the same IP with comma between.
So I put the the line
$server_ip = preg_replace( "/,.*$/", "", $server_ip );
in webpost.php.
-
20-10-2002, 17:05 #37
Our clan has both teamspeak 1 and 2 servers. Is it possible to get webpost to show both servers?
-
21-10-2002, 01:07 #38
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
No, the both send different information. It could be possible with a bit more scripting however, I don't plan on doing that though.
-
21-10-2002, 02:17 #39
-= TeamSpeak Lover =-
- Join Date
- Jun 2002
- Posts
- 39
i run the webpost-script on the same sytem the teamspeak-server is running. (webpost looks like http://localhost/ts2/webpost.php)
now when i browse to the webpost-side (from a client), the " Server : IP " sais 127.0.0.1:8767. of course not possible to connect to this server. on my (client) machine is no server running...
any possibility to add a field like 'showip' to specify an ip or address (for dyndns)? for those who don't need this feature, just leave empty.
would be great :)
-
21-10-2002, 18:04 #40
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
Easiest solution would be to set http://localhost/ts2/webpost.php to http://xoron.dyndns.org/ts2/webpost.php or http://xxx.xxx.xxx.xxx/ts2/webpost.php instead of localhost.
-
21-10-2002, 18:42 #41
-= TeamSpeak Lover =-
- Join Date
- Jun 2002
- Posts
- 39
well, i tried that already. but the dyndns-address does not get resolved when i use it inside my lan... so webpost does not work anymore
would be the easiest solution, but unfortunately its not possible :(
i'm not quite sure, so i'll test it again..
greetz
-
22-10-2002, 22:54 #42
-= TeamSpeak User =-
- Join Date
- Oct 2002
- Location
- =NL=
- Posts
- 4
One problem I encountered with the TCP Queryport not being available was a 'misreading' of IP adres.
The server that runs the script got the IP of my firewall and NOT of my TS2 server which is located on the DMZ, so the callback function on userinfo failed (connection to wrong machine).
I couldn't use TS2 option 'BoundToIP' since the DMZ has it's own local network (10.x.x.x range).
Solution to this particular problem, which worked for us:
Edit webpost.php at the top
Below the following lines....
$server_ip = getenv("HTTP_X_FORWARDED_FOR");
if ($server_ip == "") {
$server_ip = getenv("REMOTE_ADDR");
}
add....
if ($server_ip == "123.123.123.123") {
$server_ip = "456.456.456.456";
}
where 123.123.123.123 is the internet ip of your firewall and 456.456.456.456 is your internet ip of your TS2 server.
Hope this helps anyone out.
The script btw is vewwy nice! Tx!Last edited by RVannith; 22-10-2002 at 22:57.
-
22-10-2002, 22:59 #43
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
Good suggestion, I will see about finding a way to work this in.
-
25-10-2002, 22:02 #44
-= TeamSpeak User =-
- Join Date
- Sep 2002
- Location
- The Netherlands
- Posts
- 17
Originally posted by Gryphon
Ahhh yeah I forgot about that. I'll try and get you that as soon as I can.
please please please
Greets Helly
-
31-10-2002, 16:20 #45
-= TeamSpeak Addict =-
- Join Date
- Jun 2002
- Location
- Everett, WA, USA
- Posts
- 333
Sorry I haven't had any updates, or worked on the ticker. I have been busy lately and out of town.
The latest server release may do some funky stuff with the webpost script. I will release a new version as soon as possible.
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
A little problem with the GLLCTS2 webpost
By saj0577 in forum [TeamSpeak 2] Addons & ScriptsReplies: 1Last Post: 10-04-2007, 01:32 -
WebPost forcen
By brandy in forum [TeamSpeak 2] Server SupportReplies: 1Last Post: 03-05-2006, 13:08 -
alternative downloadsource for the gllcTS2 Webpost for TeamSpeak 2
By M4dD0g in forum [TeamSpeak 2] Addons & ScriptsReplies: 0Last Post: 18-01-2006, 11:23 -
TS2, MySQL, & webpost with GLLCTS2
By Ironbar in forum [TeamSpeak 2] Server SupportReplies: 2Last Post: 05-05-2004, 01:53 -
Webpost v4.0.2 doesn't show server (again)
By stevil in forum [TeamSpeak 2] Addons & ScriptsReplies: 0Last Post: 30-07-2003, 02:57


Reply With Quote
![Send a message via Yahoo to [GwL]Insomnia](images/misc/im_yahoo.gif)
