-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.php.sample
More file actions
68 lines (58 loc) · 1.61 KB
/
config.php.sample
File metadata and controls
68 lines (58 loc) · 1.61 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* Configuration File.
*/
return (object) array(
// Currently, enabling debug mode enabled FirePHP calls
'debug' => false,
// Title of page
'title' => 'Regnum Tools',
// Set to a string to show in the top header of the installation
'devheader' => false,
// Cache setting for the main "Home" screen. Setting to false disables client caching
'cachehome' => 60 * 60 * 4, // 4 hours
// Expires setting for ajax requests. Setting to false disabled ajax client caching
'ajaxexpires' => 60 * 60 * 4, // 4 hours
'analytics' => (object) array(
'enabled' => false,
'account' => ''
),
'db' => (object) array(
'dsn' => "mysql:host=localhost;dbname=databasename;unix_socket=/var/lib/mysql/mysql.sock",
'user' => 'username',
'password' => 'password',
),
'mantis' => (object) array(
'wsdl' => "http://example.com/mantis/api/soap/mantisconnect.php?wsdl",
'project_id' => 1,
'tool_version' => '1.0',
'user' => 'user',
'pass' => 'pass',
),
'memcache' => false,
/*
'memcache' => (object)array(
'host'=>'localhost',
'port'=>11211,
'expire'=>0,
),
*/
'credits' => array(
array(
'name' => 'Someones Name',
'job' => 'What they contributed',
),
),
'tools' => array(
'grinding' => true,
'mobs' => true,
'pets' => true,
'npcs' => true,
'map' => true,
'shops' => true,
'armor' => true,
'trainer' => true,
),
);
/* vim: set noet ts=4 ft=php: */
?>