main.php
2.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
// uncomment the following to define a path alias
// Yii::setPathOfAlias('local','path/to/local-folder');
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=>'My Mail Admin',
// preloading 'log' component
'preload'=>array('log'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
'application.extensions.wrest.*',
'application.extensions.wrest.actions.*',
'application.extensions.wrest.behaviors.*'
),
'modules'=>array(
),
// application components
'components'=>array(
'clientScript' => array(
'scriptMap' => array(
'jquery.js' => false,
'jquery.yiiactiveform.js' => false
)
),
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>require(dirname(__FILE__).'/routes.php')
),
'request' => array(
'class' => 'CHttpRequest'
),
'authManager'=>array(
'class'=>'CDbAuthManager',
'itemTable' => 'users',
'connectionID'=>'db'
),
'user'=>array(
// enable cookie-based authentication
'class' => 'WebUser',
'allowAutoLogin'=>true
),
'session' => array(
'sessionTableName' => 'websessions',
'class' => 'system.web.CDbHttpSession',
'connectionID' => 'db'
),
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=mail',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8'
),
'errorHandler'=>array(
'errorAction'=>'api/error/error'
),
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning, trace, profile, info'
)
)
)
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'=>array(
// this is used in contact page
'adminEmail'=>'webmaster@example.com'
),
);