Changeset 583 for trunk/stat/stat.php
- Timestamp:
- May 7, 2009, 9:15:17 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/stat/stat.php
r508 r583 2 2 include('../inc/db.php'); 3 3 4 $Hostname = $ db_server;5 $Username = $ db_user;6 $Password = $ db_pass;7 $Database = $ db_mangos; // must contains characters table4 $Hostname = $Config['Database']['Host']; 5 $Username = $Config['Database']['User']; 6 $Password = $Config['Database']['Password']; 7 $Database = $Config['Mangos']['DatabaseMangos']; // must contains characters table 8 8 $RealmHostname = $Hostname; 9 9 $RealmUsername = $Username; 10 10 $RealmPassword = $Password; 11 $RealmDatabase = $ db_realmd; // must contains zone_coordinates and accounts table12 $CharactersDatabase = $ db_characters; // must contains zone_coordinates and accounts table13 $EmuVersion = '3.0.9'; //$Config['Mangos']['Version'];14 $Owner = 'Admin'; //$Config['Web']['Admin'];15 $ServerName = 'MaNGOS server'; //$Config['Web']['Title'];11 $RealmDatabase = $Config['Mangos']['DatabaseRealmd']; // must contains zone_coordinates and accounts table 12 $CharactersDatabase = $Config['Mangos']['DatabaseCharacters']; // must contains zone_coordinates and accounts table 13 $EmuVersion = $Config['Mangos']['ClientVersion']; 14 $Owner = $Config['Web']['Admin']; 15 $ServerName = $Config['Web']['Title']; 16 16 $DatabaseEncoding = 'utf8'; 17 17
Note:
See TracChangeset
for help on using the changeset viewer.