-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.config.php
More file actions
63 lines (53 loc) · 1.7 KB
/
build.config.php
File metadata and controls
63 lines (53 loc) · 1.7 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
<?php
$this->install_key='12345'; // run site.com/install.php?install_key=12345
$this->admin_ip_access='127.0.0.1, 192.168.1.102';
$this->admin_user_name='admin';
$this->admin_password='admin';
DEFINE ('DEBUG',0);
DEFINE ('UDP_DEBUG',0);
$this->admin_ip_access=isset($this->admin_ip_access) ? array_map('trim',explode(',',$this->admin_ip_access)) : array();
$this->gs_connectors=array (
'mysql'=>array(
'db_type'=>'mysql',
'db_hostname'=>'',
'db_port'=>'3306',
'db_username'=>'phpbee_build',
'db_password'=>'',
'db_database'=>'phpbee_build',
'codepage'=>'utf8',
),
'wizard'=>array(
'db_type'=>'sqlite',
'db_file'=>$this->var_dir.'wizard.db',
),
'file_public'=>array(
'db_type'=>'file',
'db_root'=>$this->document_root.'files',
'www_root'=>'/files',
),
'handlers_cache'=>array(
'db_type'=>'file',
'db_root'=>$this->var_dir.'handlers_cache/',
),
);
if (function_exists('posix_getuid') && posix_getuid()==fileowner(__FILE__)) {
$this->created_files_perm=0600;
$this->created_dirs_perm=0700;
}
$this->modules_priority='wizard,packagemanager';
date_default_timezone_set('Europe/Moscow');
setlocale(LC_ALL,'ru_RU.UTF-8');
setlocale(LC_NUMERIC,'en_US.UTF-8');
$this->mail_smtp_host='127.0.0.1';
$this->mail_smtp_port='25';
$this->mail_smtp_username='';
$this->mail_smtp_password='';
$this->mail_smtp_auth=0;
$this->mail_from='info';
$this->mail_type='smtp';
$this->languages=NULL;
//$this->languages=array('ru'=>'RUS','en'=>'ENG');
//$this->languages='tw_languages';
$this->widget_MultiPowUpload_license='put your key here';
$this->widget_MultiPowUpload_watermark='/libs/widgets/MultiPowUpload/watermark.png';
?>