Community Forums Today's Posts     Member List     Archive    
Page 3 of 34 FirstFirst 1234513 ... LastLast
Results 31 to 45 of 507
  1. #31
    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.

  2. #32
    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:

    Data unavailable.
    TCPQueryPort may not be open.
    Any ideas? Is this the right port?

  3. #33
    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.

  4. #34
    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?

  5. #35
    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.



  6. #36
    Join Date
    Aug 2002
    Location
    Germany
    Posts
    79

    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.

  7. #37
    Join Date
    Jun 2002
    Location
    UK
    Posts
    6
    Our clan has both teamspeak 1 and 2 servers. Is it possible to get webpost to show both servers?

  8. #38
    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.

  9. #39
    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 :)

  10. #40
    Join Date
    Jun 2002
    Location
    Everett, WA, USA
    Posts
    333

  11. #41
    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

  12. #42
    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.

  13. #43
    Join Date
    Jun 2002
    Location
    Everett, WA, USA
    Posts
    333
    Good suggestion, I will see about finding a way to work this in.

  14. #44
    Join Date
    Sep 2002
    Location
    The Netherlands
    Posts
    17

    Smile

    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

  15. #45
    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

  1. A little problem with the GLLCTS2 webpost
    By saj0577 in forum [TeamSpeak 2] Addons & Scripts
    Replies: 1
    Last Post: 10-04-2007, 01:32
  2. WebPost forcen
    By brandy in forum [TeamSpeak 2] Server Support
    Replies: 1
    Last Post: 03-05-2006, 13:08
  3. alternative downloadsource for the gllcTS2 Webpost for TeamSpeak 2
    By M4dD0g in forum [TeamSpeak 2] Addons & Scripts
    Replies: 0
    Last Post: 18-01-2006, 11:23
  4. TS2, MySQL, & webpost with GLLCTS2
    By Ironbar in forum [TeamSpeak 2] Server Support
    Replies: 2
    Last Post: 05-05-2004, 01:53
  5. Webpost v4.0.2 doesn't show server (again)
    By stevil in forum [TeamSpeak 2] Addons & Scripts
    Replies: 0
    Last Post: 30-07-2003, 02:57

Tags for this Thread

Posting Permissions

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