source: trunk/includes/config.sample.php@ 319

Last change on this file since 319 was 319, checked in by george, 15 years ago
  • Přidáno: Převod textů do systému AoWoW. Je použit konkrétní export a je u něj automaticky aktualizován výběr a pořadí překladatelů dle dosaženého XP.
  • Property svn:executable set to *
File size: 781 bytes
Line 
1<?php
2
3$Config = array(
4 'Database' => array(
5 'Host' => 'localhost',
6 'User' => 'root',
7 'Password' => '',
8 'Database' => 'wowpreklad',
9 'DatabaseAoWoW' => 'wowpreklad_mangos',
10 'Prefix' => '',
11 'Charset' => 'utf8',
12 'MangosPrefix' => '',
13 ),
14 'Style' => 'maron',
15 'Web' => array(
16 'Charset' => 'utf-8',
17 'BaseURL' => 'http://localhost/',
18 'AdminEmail' => 'admin@localhost',
19 'ShowSQLQuery' => false,
20 'ShowSQLError' => false,
21 'ShowPHPError' => false,
22 'ShowRuntimeInfo' => false,
23 'ItemsPerPage' => 40,
24 'TempFolder' => '../tmp/',
25 'GameVersion' => '3.0.3',
26 'VisiblePagingItems' => 20,
27 ),
28 'ExportTashProcessPeriod' => 10,
29 'MaxExportPerUser' => 10,
30 'AoWoWExportId' => 1,
31);
32
33?>
Note: See TracBrowser for help on using the repository browser.