Difference between revisions of "Frequently Asked Questions"

Line 36: Line 36:
 
=== Configure Mods ===
 
=== Configure Mods ===
 
Each mod installation is different depending on the game. We can only give you an overview of what you might need to do when configuring a mod in TCAdmin. Read the [[Mods#Configure_a_Mod|Mod Configuration Page]] for details.
 
Each mod installation is different depending on the game. We can only give you an overview of what you might need to do when configuring a mod in TCAdmin. Read the [[Mods#Configure_a_Mod|Mod Configuration Page]] for details.
 +
 +
 +
== Linux ==
 +
=== Configure the website on port 80 ===
 +
By default, the TCAdmin website user runs with a normal account. On Linux, normal users can't open ports lower than 1024. To work around this you have to redirect port 80 to 8880 using iptables.
 +
 +
iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8880
 +
service iptables save
 +
 +
You can do the same for the ftp port: Redirect 21 to 8821

Revision as of 13:35, 9 July 2011

General

Default Ports Used by TCAdmin

Windows

Web/Monitor
8880, 8881 TCP
FTP
8821 TCP
FTP Passive Mode
5000 to 5100 TCP

Linux

Web
8880 TCP
Monitor
8890, 8891 TCP
FTP
8821 TCP
FTP Passive Mode
5000 to 5100 TCP

Supported Compression Formats

See Compression

Game Configuration

Disable Text Editor for a Single File

  1. Select the game's details and select the File System Permissions icon.
  2. Expand subadmin, reseller or user.
  3. Click on "Add permission by file name".
  4. Enter the file name that you want to block.
  5. Select "No permissions".
  6. Click on the Add button.
  7. Click on the Save button.

You can also use "Add permission by file path". The difference is that this option will only block the file in the specified path. You can have files with the same name in other folders and they will not be blocked. "Add permission by file name" blocks a file with that name in any folder.

Configure Mods

Each mod installation is different depending on the game. We can only give you an overview of what you might need to do when configuring a mod in TCAdmin. Read the Mod Configuration Page for details.


Linux

Configure the website on port 80

By default, the TCAdmin website user runs with a normal account. On Linux, normal users can't open ports lower than 1024. To work around this you have to redirect port 80 to 8880 using iptables.

iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8880
service iptables save

You can do the same for the ftp port: Redirect 21 to 8821

Retrieved from "https://help.tcadmin.com/index.php?title=Frequently_Asked_Questions&oldid=396"