· 9 years ago · Jan 27, 2017, 03:20 PM
1<?php
2/*
3 Author: Wruczek
4 Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9PL5J7ULZQYJQ
5
6 I am happy to take any programming-related requests, add additional features or modify the code to suit your needs for a small donation :)
7 I am experienced at Java, PHP, HTML, CSS, Javascript, SQL, server configurations ect.
8 For business enquiries only: wruczekk at gmail.com, for anything else please join Telegram chat.
9
10
11 Need help? Join our telegram group for news, announcements, help and general chat about ts-website: https://telegram.me/tswebsite
12*/
13
14
15
16/************* General configuration *************/
17
18$config["general"]["title"] = "TS.EUROCS.NET"; // Website title - displayed in the menu
19$config["general"]["icon"] = "img/icon/icon-32.png"; // Website icon
20$config["general"]["subtitle"] = " - Official TeamServer Server !"; // Website subtitle
21$config["general"]["desc"] = "Romanian TeamSpeak Server"; // Website description - displayed in Google search engine
22$config["general"]["newsDir"] = "config/news"; // News folder (relative to project folder)
23$config["general"]["timezone"] = "Europe/Warsaw"; // Your timezone - http://php.net/manual/en/timezones.php
24$config["general"]["christmasmode"] = true; // Set to false to permanently disable christmas mode activated in December
25
26$config["general"]["enablehta"] = false; // Enable / Disable additional website features (recommended, but
27 // you need to have up-to-date version of Apache and install mod_rewrite)
28 // After setting to true, go into .htaccess file and uncomment 19 line
29
30
31/********* TeamSpeak configuration *********/
32
33$config['teamspeak']['host'] = '89.40.233.114'; // TeamSpeak host address
34$config['teamspeak']['login'] = 'ecs-guard'; // Login
35$config['teamspeak']['password'] = '-'; // Password
36$config['teamspeak']['server_port'] = 9987; // TeamSpeak server port
37$config['teamspeak']['query_port'] = 10011; // Query port
38$config['teamspeak']['displayip'] = 'ts.eurocs.net'; // IP shown to users and used for connections
39
40
41
42/************* Additional navigation links - you can link to your stuff *************/
43
44// TEMPLATE: (ICON is an icon name from: http://fontawesome.io/icons/)
45// $config["navlinks"][] = ["icon", "displayed text", "link"];
46
47$config["navlinks"][] = ["fa-facebook-official", "Facebook", "https://facebook.com/Facebook"];
48$config["navlinks"][] = ["fa-twitter-square", "Twitter", "https://twitter.com/Twitter"];
49$config["navlinks"][] = ["fa-comments", "Forum", "forum"];
50
51
52
53/************* Adminlist configuration *************/
54
55// ID of servergroups displayed as admins in Adminlist. Put it in the same way you want it to be displayed.
56$config["adminlist"] = [6, 17, 19];
57
58
59
60/************* Contact panel configuration *************/
61
62$config['contact']['title'] = 'Contact the staff';
63
64/*
65TIP: You can remove all items below to hide contact panel
66
67CONTACT PANEL SYNTAX:
68$config['contact']['items'][] = ["name", "link description", "link"];
69
70FOR EXAMPLE:
71$config['contact']['items'][] = ["Telegram", "@Wruczek", "https://telegram.me/Wruczek"];
72*/
73
74$config['contact']['items'][] = ["TeamSpeak", "Support channel", "ts3server://teamspeakip?cid=30"];
75$config['contact']['items'][] = ["Email", "contact@email.com", "mailto:contact@email.com"];
76$config['contact']['items'][] = ["Telegram", "@Telegram", "https://telegram.me/Telegram"];
77$config['contact']['items'][] = ["Twitter", "@Twitter", "https://twitter.com/Twitter"];