-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfiguration.php
36 lines (32 loc) · 1.09 KB
/
Configuration.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
<?php
class Configuration extends ConfigurationBase {
//public $Encoding = "utf-8";
//public $SecretKey = '~a!s@e#q$b%a^s&e*';
//public $DisplayError = 1;
//public $DisplayStartupError = 1;
//public $ReportError = E_ALL;
//public $DataBaseError = 1;
//public $AllowCache = false;
//public $AllowReduceSize = true;
//public $AllowEncryptNames = true;
///**
// * The status of all server response: 400, 404, 500, etc.
// * @var mixed
// */
//public $StatusMode = null;
///**
// * The accessibility mode: 1 for whitelisted IPs, -1 for blacklisted IPs
// * @var mixed
// */
//public $AccessMode = 0;
//public $AccessPatterns = array();
//public $RestrictionContent = "Unfortunately you have no access to the site now!<br>Please try a few minute later...";
//public $DataBaseEncoding = "utf8";
//public $DataBaseType = 'mysql';
//public $DataBaseHost = 'localhost';
//public $DataBaseUser = null;
//public $DataBasePassword = null;
//public $DataBaseName = 'localhost';
//public $DataBasePrefix = 'aseq_';
}
?>