Disable or override features on a specific server

To disable or override specific features on a single server create a file named Override.config in the TCAdmin installation folder. Options are:

ServiceExeReadOnly
: true/false : The game server's executable can't be changed in the service settings.
DisableNewService : true/false : New services can't be created manually on this server.
DisableScripts : true/false : Disable install/uninstall scripts.
DisableStandAloneFTP : true/false : Disable standalone FTP accounts.
RestrictLinuxExe : true/false : All Linux executables are restricted.
RestrictedExtensions : list of restricted extensions separated by comma.
RestrictedFileNames : list of restricted file names separated by comma.
DisableGameMonitorEmails : true/false : Disable game monitor email.
HttpStartPort : Start port for file manager upload/download, log viewer, steam update, console output.

Example:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ServiceExeReadOnly" value="true" />
<add key="DisableNewService" value="true" />
<add key="DisableScripts" value="true" />
<add key="DisableStandAloneFTP" value="true" />
<add key="RestrictLinuxExe" value="true" />
<add key="RestrictedExtensions" value="exe,bat" />
<add key="RestrictedFileNames" value="game.exe" />
<add key="HttpStartPort" value="900" />
</appSettings>
</configuration>



If an option is not used it can have a blank value or the whole line can be removed.

  • 71 Users Found This Useful
Was this answer helpful?

Related Articles

Unbanning IPs from TCAdmin

1) Remove the IP from System Settings > Plugins > Configure Security2) If the IP is not...

Captcha Support

TCAdmin supports captcha from adscaptcha.com. They have free security only captchas and captchas...