source: branches/old/config.sample.php

Last change on this file was 448, checked in by george, 16 years ago
  • Přesunuto: Obsah kořenové složky byl přesunut do složky trunk a beta web přesunut do branches/beta.
File size: 1.2 KB
Line 
1<?php
2
3$Config = array(
4 'Database' => array(
5 'Host' => 'localhost',
6 'User' => '',
7 'Password' => '',
8 'Database' => '',
9 'Prefix' => '',
10 'Charset' => 'utf8',
11 ),
12 'Style' => 'maron',
13 'Mangos' => array(
14 'Version' => '0.8 beta SVN',
15 'Revision' => '4203',
16 'UDBVersion' => '0.7',
17 'UDBRevision' => '204',
18 'ScriptDev2Revision' => '137',
19 'ClientVersion' => '2.1.3',
20 'MaxOnlinePlayers' => 100,
21 'RequiredOnlinePlayers' => 70,
22 'DatabaseMangos' => 'mangos',
23 'DatabaseCharacters' => 'characters',
24 'DatabaseRealmd' => 'realmd',
25 'DatabaseScriptDev2' => 'scriptdev2',
26 ),
27 'Web' => array(
28 'Charset' => 'utf-8',
29 'BaseURL' => 'http://localhost/',
30 'Description' => 'Neoficiální herní server hry World of Warcraft',
31 'WoWServerAddr' => 'localhost',
32 'Title' => 'WoW server',
33 'Admin' => 'Admin',
34 'AdminEmail' => 'admin@localhost',
35 'ShowError' => 0,
36 'ErrorLogFile' => 'php_script_error.log',
37 ),
38 'CheckRegistration' => array(
39 'Host' => 'localhost',
40 'User' => '',
41 'Password' => '',
42 'Database' => '',
43 'Prefix' => '',
44 'Charset' => 'utf8',
45 ),
46);
47
48
49?>
Note: See TracBrowser for help on using the repository browser.