This repository has been archived by the owner on Jan 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.php
51 lines (36 loc) · 1.49 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// Location of MySQL server
define('DB_HOST', 'CHANGEME');
// MySQL user for modifying auth database
define('DB_USER', 'CHANGEME');
// MYSQL user password
define('DB_PASS', 'CHANGEME');
// Database that stores authentication information (usually 'auth' on TrinityCore)
define('DB_NAME', 'auth');
// Location of SOAP (worldserver with TrinityCore) server
define('SOAP_IP', 'CHANGEME');
// Port for SOAP server
define('SOAP_PORT', '7878');
// Account name to handle SOAP commands (needs RBAC permissions 219 and 228 for TrinityCore)
define('SOAP_USER', 'CHANGEME');
// Account name password
define('SOAP_PASS', 'CHANGEME');
// Define which SOAP URI gets used
// This allows for easy switching between different emulators
define('SOAP_URI', 'urn:Oregon');
//define('SOAP_URI', 'urn:TC');
//define('SOAP_URI', 'urn:MaNGOS');
// WoW Server Address (to tell people what to enter in realmlist/Config.wtf
// Has nothing to do with account creation directly
define('REALMLIST', "CHANGEME");
// Check if Email Address is already in-use
define('CHECK_FOR_DUPLICATE_EMAIL', false);
// Title of the site (something like "Realm of Espionage WotLK Server Registration Page")
// This is displayed at the top of the browser window and in tabs
define('SITE_TITLE', "CHANGEME");
// Site meta description (for search engines)
define('META_DESCRIPTION', "CHANGEME");
// Site meta keywords (for search engines)
define('META_KEYWORDS', "CHANGEME");
// Site meta robots (for search engines)
define('META_ROBOTS', "INDEX,NOFOLLOW");