You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 55 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - TeamSpeak Block [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
JWP1987
Nuke Cadet
Nuke Cadet


Joined: Jan 06, 2005
Posts: 4


PostPosted: Sat Jan 08, 2005 4:42 am Reply with quoteBack to top

that's a ported version of webpost isn't it?
I was gonna port webpost...but I didn't really like the 5 min refresh time and I found some errors in the flag processing code giving the wrong icon for away etc (in the version I had anyway - which I think was the latest) and couldn't be bothered to edit all of it, so I made my own from the html of the webpost script and some the raw socket connection code in }#{REDRUM's teamspeak block.
Find all posts by JWP1987View user's profileSend private message
D_R_A_G_O_N
Nuke Soldier
Nuke Soldier


Joined: Jan 02, 2005
Posts: 31

Location: harrisburg pa

PostPosted: Sat Jan 08, 2005 7:25 am Reply with quoteBack to top

yep sure is .... heavily modifed ... added alot of new code .....but have not had the time or will power to finish it yet
Find all posts by D_R_A_G_O_NView user's profileSend private messageVisit poster's website
BYTES
Nuke Cadet
Nuke Cadet


Joined: Jan 14, 2005
Posts: 2


PostPosted: Thu Jan 13, 2005 10:01 pm Reply with quoteBack to top

I would like to thank jaj and CaptDD for their excellent posts. My other webadmin, Aleister, edited the code to fit inside of a narrower block. The alignment is set to the left, and there are no images which offers a much cleaner look IMHO. He also set the max number of characters to 15, but you can modify the number, as well as the colors, to fit you needs. You are welcome to see it in action on our website http://www.dcwclan.com.

Code:
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi (fbc@mandrakesoft.com)         */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/
/************************************************************************/
/* block-Teamspeak3.php                                                 */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2004 by jaj (jaj@nukecops.com)                         */
/* http://nukecops.com                                                  */
/************************************************************************/
/* Cosmetic changes by CaptDD at webmaster@rapidfireclan.com            */
/* http://rapidfireclan.com                                             */
/************************************************************************/
/* Additional Cosmetic changes by Aleister at admin@dcwclan.com         */
/* http://www.dcwclan.com                                               */
/************************************************************************/



// **** settings - to be edited before first use ****

$serverAddress = "xxx.xxx.xxx.xxx";  // can be ip address or url

$serverQueryPort = 51234;  // default 51234, must be accessible and usable. check server.ini

$serverUDPPort = 8767;  // default 8767

// **** end of settings ****

if (eregi("block-Teamspeak3.php", $PHP_SELF)) {
  Header("Location: index.php");
  die();
}


global $user, $cookie;
getusrinfo($user);
cookiedecode($user);
$username = $cookie[1];

// opens a connection to the teamspeak server
function getSocket($host, $port, $errno, $errstr, $timeout) {
   global $errno, $errstr;
   @$socket = fsockopen($host, $port, $errno, $errstr, $timeout);
        if($socket and fread($socket, 4) == "[TS]") {
            fgets($socket, 128);
            return $socket;
        }// end if
        return false;
}// end function getSocket(...)

// sends a query to the teamspeak server
function sendQuery($socket, $query) {
   fputs($socket, $query."\n");
}

// answer OK?
function getOK($socket) {
        $result = fread($socket, 2);
        fgets($socket, 128);
        return($result == "OK");
}

// closes the connection to the teamspeak server
function closeSocket($socket) {
        fputs($socket, "quit");
        fclose($socket);
}

// retrieves the next argument in a tabulator-separated string (PHP scanf function bug workaround)
function getNext($evalString) {
        $pos = strpos($evalString, "\t");
        if(is_integer($pos)) {
      return substr($evalString, 0, $pos);
        }
        else {
            return $evalString;
        }
}

// removes the first argument in a tabulator-separated string (PHP scanf function bug workaround)
function chopNext($evalString) {
        $pos = strpos($evalString, "\t");
        if(is_integer($pos)) {
      return substr($evalString, $pos + 1);
        }
        else {
           return "";
        }
}

// MAIN PROGRAM START

// establish connection to teamspeak server
$socket = getSocket($serverAddress, $serverQueryPort, $errno, $errstr, 3);
if($socket == false) {
        $content .= "An error connecting to the TeamSpeak server has occured!<br>\n";
        $content .= "Error number: ".$errno."<br>\n";
        $content .= "Error description: ".$errstr."<br>\n";
        return;
}

// select the one and only running server on port 8767
sendQuery($socket, "sel ".$serverUDPPort);

// retrieve answer "OK"
if(!getOK($socket)) {
   die("Server didn't answer &quot;OK&quot; after last command. Aborting.");
}// end if

// retrieve player list
sendQuery($socket,"pl");

// read player info
$playerList = array();

//Skip the first line. It only contains header labels
fgets($socket);
while (true)
{
   //Read the next line from the socket
   $line = fgets($socket);

   //Break it up on the tab delimiter
   $playerinfo = explode("\t", $line);

   //Bail out if only one element
   if (count($playerinfo) == 1)
   {
      //Only one element means the OK has been encountered.
      //The list is done.
      break;
   }
   
   //Stuff the array values into variables
   list($playerid, $channelid, $receivedpackets, $receivedbytes, $sentpackets, $sentbytes, $d, $d, $totaltime, $idletime, $d, $d, $d, $s, $playername) = $playerinfo;
   
   $playerList[$playerid] = array("playerid" => $playerid,
               "channelid" => $channelid,
               "receivedpackets" => $receivedpackets,
               "receivedbytes" => $receivedbytes,
               "sentpackets" => $sentpackets,
               "sentbytes" => $sentbytes,
               "totaltime" => $totaltime,
               "idletime" => $idletime,
               "playername" => str_replace("\"", "", $playername));
}



// retrieve channel list
sendQuery($socket,"cl");

// read channel info
$channelList = array();
do {
        $channelinfo = "";
        do {
      $input = fread($socket, 1);
      if($input != "\n" && $input != "\r") $channelinfo .= $input;
        } while($input != "\n");

        $channelid = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $codec = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $parent = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $d = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $maxplayers = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $channelname = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $d = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $d = getNext($channelinfo);
        $channelinfo = chopNext($channelinfo);
        $topic = getNext($channelinfo);

        if($channelid != "OK") {
      if($isdefault == "Default") $isdefault = 1; else $isdefault = 0;

               // determine number of players in channel
               $playercount = 0;
               foreach($playerList as $playerInfo) {
                   if($playerInfo[channelid] == $channelid) $playercount++;
               }

               $channelList[$channelid] = array("channelid" => $channelid,
                                             "codec" => $codec,
                                             "parent" => $parent,
                                             "maxplayers" => $maxplayers,
                                             "channelname" => $channelname,
                                             "isdefault" => $isdefault,
                                             "topic" => $topic,
                                             "currentplayers" => $playercount);
   }
} while($channelid != "OK");

// display channel list
/*$content .= "<table width=\"100%\">\n";*/
$counter = 0;
foreach($channelList as $channelInfo) {
   // default channel?
        if($channelInfo[isdefault] == 1) {
            $channelname = $channelInfo[channelname];
        } else {
            $channelname = $channelInfo[channelname];
        }

      if ($channelInfo[currentplayers] > 0) {
/*         $content .= "<tr><td><img src=\"images/bullet_channel.gif\" border=\"0\" align=\"left\">".$channelname."</tr></td>\n";*/
         $content .= "<font color=\"#FFCC00\"><strong>".$channelname."</strong></font><br>\n";
      }

        $counter++;
        foreach ($playerList as $playerInfo) {
           if ($channelInfo[channelid] == $playerInfo[channelid]) {

/*              $content .= "<tr><td><img src=\"images/bullet_0.gif\" border=\"0\" align=\"left\">".$playerInfo[playername]."</tr></td>\n"; */

            $temp_playername = $playerInfo[playername];

            if (strlen($temp_playername) > 15) {
         
               $temp_playername = substr($temp_playername, 0, 15);
               $temp_playername .= "...";

            }


              $content .= "&nbsp;-&nbsp;".$temp_playername."<br>\n";
           }
        }
    }

    if($counter == 0) $content .= "No channels<br>\n";


/*   $content .= "</table>\n";*/

    // close connection to teamspeak server
    closeSocket($socket);



 

$content .= "<form name=\"testform\">";
$content .= "&nbsp;&nbsp;&nbsp;<input type=\"text\" name=\"NICKNAME\" size=\"12\"> Nick";
$content .= "<br>";
$content .= "<br>";
$content .= "&nbsp;&nbsp;&nbsp;<input type=\"text\" name=\"LOGINNAME\" size=\"12\"> Login";
$content .= "<br>";
$content .= "<br>";
$content .= "&nbsp;&nbsp;&nbsp;<input type=\"text\" name=\"PASSWORD\" size=\"12\"> Pass";
$content .= "<br>";
$content .= "<br>";
$content .= "<center>";
$content .= "<input type=\"button\" value=\"Submit\" onClick=\"location.href='teamspeak://$serverAddress: $serverUDPPort/nickname=' + testform.NICKNAME.value + '?loginname=' + testform.LOGINNAME.value + '?password=' + testform.PASSWORD.value;\"></center>";
$content .= "<br>";

$content .= "</form>";
$content .= "<center>";
$content .="<a href=\"http://www.goteamspeak.com\" target=\"_blank\"><img src=\"graphics/teamspeak.gif\" border=\"0\" align=absmiddle alt=\"Go to goteamspeak.com\"></a></center>"
 ."";






?>

_________________
Image
Find all posts by BYTESView user's profileSend private messageMSN Messenger
edge87
Nuke Cadet
Nuke Cadet


Joined: Jan 15, 2005
Posts: 1


PostPosted: Fri Jan 14, 2005 10:09 pm Reply with quoteBack to top

JWP1987 wrote:
I've been coding a teamspeak block recently where you can get all the player, channel and server data by clicking on names.
Just been cleaning out the code and removing glitches like html tags being processed etc.

the TS block is running on http://www.btb-clan.f2s.com/index.php
it's at the bottom of the page in the middle.
it doesn't use webpost but it does use the database to output the channel and user data.

Tell me if anyone wants the code for it.


I am very interested in this , i love the way it looks and i was wondering if i could have that code from you, and under what terms would i be able to use it. Very Happy
Find all posts by edge87View user's profileSend private message
Cash
Nuke Cadet
Nuke Cadet


Joined: Jan 21, 2005
Posts: 1


PostPosted: Fri Jan 21, 2005 9:40 am Reply with quoteBack to top

I'm also very interested, it look great!
And i'm also wondering if I could use it? Smile
Find all posts by CashView user's profileSend private message
JWP1987
Nuke Cadet
Nuke Cadet


Joined: Jan 06, 2005
Posts: 4


PostPosted: Sat Jan 22, 2005 8:49 am Reply with quoteBack to top

ok I'll fix all the bugs I can find then upload it for release Razz
Find all posts by JWP1987View user's profileSend private message
JWP1987
Nuke Cadet
Nuke Cadet


Joined: Jan 06, 2005
Posts: 4


PostPosted: Sat Jan 22, 2005 9:32 am Reply with quoteBack to top

here it is:

http://www.btb-clan.f2s.com/Teamspeak-block+module.zip

let me know if there are any problems.
sorry about the rushed readme and if u have any trouble installing it, it's
because I didn't really intend to release it Razz
Find all posts by JWP1987View user's profileSend private message
Josh00Si
Nuke Cadet
Nuke Cadet


Joined: Dec 27, 2004
Posts: 6


PostPosted: Wed Jan 26, 2005 8:45 am Reply with quoteBack to top

Is there a way to query a teamspeak server with out opening a socket. MY webhost doesn't allow a php script to open a socket.
Find all posts by Josh00SiView user's profileSend private message
Bowser
Nuke Cadet
Nuke Cadet


Joined: Feb 02, 2005
Posts: 3


PostPosted: Wed Feb 02, 2005 9:55 am Reply with quoteBack to top

Hi I ve tried some of the scripts posted on this site and always get the same connection error number 110 connection timed out.

I am wondering if it is for the reason Josh00Si has said above that my webhost wont allow php to open a socket.I put this question to my webhost but didn’t get an official answer from them this is what they said.

“yes this could be true if it uses a closed port, or it could be the fact that
register_globals are off or simply that we are running php5, but its up to you
m8 to contact the author of the script for support.

we will not open ports that are not normally used and we will not turn on
register_globals, this is a security matter
and both of these are to stop server abuse”

Can someone look at the code (as they all seem to be almost identical I guess you can answer from looking at the code in BYTES post above) and tell me if it is doing one of these things my host has said they don’t allow either:

“we will not open ports that are not normally used”

OR

“we will not turn on register_globals”

Thanks for you help any info on how I should go about it or what i can request off my server host to get it working would also be much appreciated.
Find all posts by BowserView user's profileSend private message
Evaders99
Site Admin
Site Admin


Joined: Aug 17, 2003
Posts: 12383


PostPosted: Wed Feb 02, 2005 2:21 pm Reply with quoteBack to top

If they don't allow the port to be opened, then you're outta luck. Get a new host.

_________________
Helping those that help themselves
Read FIRST or DIE!

"Fighting is terrible, but not as terrible as losing the will to fight."
Star Wars Rebellion Network - Need Help? Evaders Squadron Coding
Find all posts by Evaders99View user's profileSend private messageVisit poster's websiteAIM Address
gammo
Nuke Soldier
Nuke Soldier


Joined: Feb 03, 2005
Posts: 14


PostPosted: Thu Feb 03, 2005 10:00 am Reply with quoteBack to top

excellent post.
Find all posts by gammoView user's profileSend private message
IBA_DR_DEATH
Nuke Soldier
Nuke Soldier


Joined: Oct 22, 2003
Posts: 14


PostPosted: Thu Feb 03, 2005 4:51 pm Reply with quoteBack to top

is there a block or how can i modify this one to show 2 team speaks in one block. i have 2 team speaks wirh 2 ip's, is there a way to do this?
Quote:
<?php

$usemarquee = 1;
$scrolldirection = "Up";

// **** settings - to be edited before first use ****
$serverAddress = "xxxxxxxxx"; // can be ip address or url
$serverQueryPort = xxxxxxx; // default 51234, must be accessible and usable. check server.ini
$serverUDPPort =xxxx ; // default 8767
// **** end of settings ****

if (eregi("block-TeamspeakV2.php", $PHP_SELF)) {
Header("Location: index.php");
die();
}

global $user, $cookie, $prefix, $anonymous, $dbi, $user_prefix, $username, $admin, $userinfo;
getusrinfo($username);
cookiedecode($username);
$username = $cookie[1];

// opens a connection to the teamspeak server
function getSocket($host, $port, $errno, $errstr, $timeout) {
global $errno, $errstr;
@$socket = fsockopen($host, $port, $errno, $errstr, $timeout);
if($socket and fread($socket, 4) == "[TS]") {
fgets($socket, 128);
return $socket;
}// end if
return false;
}// end function getSocket(...)

// sends a query to the teamspeak server
function sendQuery($socket, $query) {
fputs($socket, $query."\n");
}

// answer OK?
function getOK($socket) {
$result = fread($socket, 2);
fgets($socket, 128);
return($result == "OK");
}

// closes the connection to the teamspeak server
function closeSocket($socket) {
fputs($socket, "quit");
fclose($socket);
}

// retrieves the next argument in a tabulator-separated string (PHP scanf function bug workaround)
function getNext($evalString) {
$pos = strpos($evalString, "\t");
if(is_integer($pos)) {
return substr($evalString, 0, $pos);
}
else {
return $evalString;
}
}

// removes the first argument in a tabulator-separated string (PHP scanf function bug workaround)
function chopNext($evalString) {
$pos = strpos($evalString, "\t");
if(is_integer($pos)) {
return substr($evalString, $pos + 1);
}
else {
return ;
}
}

// MAIN PROGRAM START

// establish connection to teamspeak server
$socket = getSocket($serverAddress, $serverQueryPort, $errno, $errstr, 3);
if($socket == false) {
$content .= "An error connecting to the TeamSpeak server has occured!<br>\n";
$content .= "Error number: ".$errno."<br>\n";
$content .= "Error description: ".$errstr."<br>\n";
return;
}

// select the one and only running server on port 8767
sendQuery($socket, "sel ".$serverUDPPort);

// retrieve answer "OK"
if(!getOK($socket)) {
die("Server didn't answer &quot;OK&quot; after last command. Aborting.");
}// end if

// retrieve player list
sendQuery($socket,"pl");

// read player info
$playerList = array();
do {
$playerinfo = fscanf($socket, "%s\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%s\t%s");
list($playerid, $channelid, $receivedpackets, $receivedbytes, $sentpackets, $sentbytes, $d, $d, $totaltime, $idletime, $d, $d, $d, $s, $playername) = $playerinfo;
if($playerid != "OK") {
$playerList[$playerid] = array(playerid => $playerid,
channelid => $channelid,
receivedpackets => $receivedpackets,
receivedbytes => $receivedbytes,
sentpackets => $sentpackets,
sentbytes => $sentbytes,
totaltime => $totaltime,
idletime => $idletime,
playername => $playername);
}
} while($playerid != "OK");

// retrieve channel list
sendQuery($socket,"cl");

// read channel info
$channelList = array();
do {
$channelinfo = "";
do {
$input = fread($socket, 1);
if($input != "\n" && $input != "\r") $channelinfo .= $input;
} while($input != "\n");

$channelid = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$codec = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$parent = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$d = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$maxplayers = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$channelname = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$d = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$d = getNext($channelinfo);
$channelinfo = chopNext($channelinfo);
$topic = getNext($channelinfo);

if($channelid != "OK") {
if($isdefault == "Default") $isdefault = 1; else $isdefault = 0;

// determine number of players in channel
$playercount = 0;
foreach($playerList as $playerInfo) {
if($playerInfo[channelid] == $channelid) $playercount++;
}

$channelList[$channelid] = array(channelid => $channelid,
codec => $codec,
parent => $parent,
maxplayers => $maxplayers,
channelname => $channelname,
isdefault => $isdefault,
topic => $topic,
currentplayers => $playercount);
}
} while($channelid != "OK");


$content .= "<!----- drop down ----->\n";
$content .= "<TABLE BORDER=0 align=center target=_blank CELLPADDING=0 CELLSPACING=0>\n";
$content .= "<TR><FORM METHOD=GET ACTION=\"modules.php\">\n";
$content .= "<select name=\"select15\" onChange=\"window.open(this.options[this.selectedIndex].value,'_blank','height=300 width=225')\">";
$content .= "<OPTION VALUE=\"http://#\">Channels";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=69.93.129.146\">8821\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "<OPTION VALUE=\"webpost/login.php?nickname=$username&detail=1&channel=xxxxxxxxxxx\">xxxxx\n";
$content .= "</SELECT></TD></TR></FORM></TABLE>";

// display channel list
$content .= "<table width=\"100%\">\n";
$counter = 0;
foreach($channelList as $channelInfo) {
// default channel?
if($channelInfo[isdefault] == 1) {
$channelname = $channelInfo[channelname];
} else {
$channelname = $channelInfo[channelname];
}

switch ($channelname) {
case "Default":
$link = "webpost/login.php?detail=4&channel=$channelname";
break;
}
$counter++;
foreach ($playerList as $playerInfo) {
if ($channelInfo[channelid] == $playerInfo[channelid]) {
$content .= "<tr><td></td><td colspan=3><img src=\"webpost/images/bullet_0.gif\" alt=$channelInfo[channelname] align=left>".$playerInfo[playername]." </td></tr>\n";
}
}
}

if($counter == 0) $content .= "<tr><td colspan=\"4\" align=\"CENTER\">No channels</td></tr>\n";
$content .= "</table>\n";

// close connection to teamspeak server
closeSocket($socket);

$content .= "<br><center><a href=http://www.teamspeak.org/modules.php?op=modload&name=Downloads&file=index><img src=http://iba-gaming.com/webpost/images/ngz.gif border=\"0\" alt=\"Download TeamSpeak\"></a></center>";

?>
Find all posts by IBA_DR_DEATHView user's profileSend private message
dclowes
Nuke Cadet
Nuke Cadet


Joined: Feb 13, 2005
Posts: 1


PostPosted: Sun Feb 13, 2005 9:26 am Reply with quoteBack to top

I'm new here so please be gentle Confused

I want to install the TS block, but I need a tweak for it. We share a public TS Server with over 100 channels and I only want to show ours.

Please can you tell me which part of the code I need to edit to show our channel and the sub-channels within it.
Find all posts by dclowesView user's profileSend private message
CaptDD
Corporal
Corporal


Joined: Jan 02, 2005
Posts: 51

Location: Manistee, MI, USA

PostPosted: Wed Feb 16, 2005 9:10 am Reply with quoteBack to top

Trying to update my site by using the teamspeak block from JWP1987. The block installs and partially works. I am not getting any input to the database for ts_user or ts_channel, the table remains empty. The block does show server info such as server name, IP and message. I believe this shows that the connection to the server is being established. However I get an error message in the main area of the block (which should show channels)"Data unavailable.TCPQueryPort may not be open." This I think is due to the data not being placed in the database. Does anyone else have this problem or does anyone know the fix? Does this block need a config.php to access the database?

_________________
Image
Find all posts by CaptDDView user's profileSend private messageVisit poster's websiteAIM AddressMSN Messenger
Smirnof
Nuke Cadet
Nuke Cadet


Joined: Jan 09, 2005
Posts: 1


PostPosted: Sun Feb 20, 2005 10:20 pm Reply with quoteBack to top

I was installing this block on my site and was having some problems working with it. Just trying to figure out what my server settings for my site are so I can update them on the TS settings. So I need to know where to find the server port, and serverUDpport. I looked all througout my ftp and couldn't find a server.ini file.
Find all posts by SmirnofView user's profileSend private message
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 1.404 Seconds - 461 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::