Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Павел Резуненко
/
MTAweb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
1
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 1a81756d
authored
Mar 27, 2013
by
Павел Резуненко
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Поправки для совместимости подключения файлов в php более ранней версии
1 parent
8d133f18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
56 deletions
public/index.php
public/protected/config/main.php
public/index.php
View file @
1a81756
...
...
@@ -13,8 +13,7 @@ defined('YII_DEBUG') or define('YII_DEBUG',true);
defined
(
'YII_TRACE_LEVEL'
)
or
define
(
'YII_TRACE_LEVEL'
,
3
);
require_once
(
$yii
);
/*require_once($webappl);
Yii::createApplication('WebApplication', $config)->run();*/
Yii
::
$enableIncludePath
=
false
;
Yii
::
createWebApplication
(
$config
)
->
run
();
Yii
::
app
()
->
clientScript
->
scriptMap
=
array
(
'jquery.js'
=>
false
,
...
...
public/protected/config/main.php
View file @
1a81756
...
...
@@ -6,33 +6,27 @@
// 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'
,
'basePath'
=>
dirname
(
__FILE__
)
.
DIRECTORY_SEPARATOR
.
'..'
,
'name'
=>
'My Mail Admin'
,
// preloading 'log' component
'preload'
=>
array
(
'log'
),
// preloading 'log' component
'preload'
=>
array
(
'log'
),
// autoloading model and component classes
'import'
=>
array
(
'application.models.*'
,
'application.components.*'
,
'application.extensions.wrest.*'
),
// autoloading model and component classes
'import'
=>
array
(
'application.models.*'
,
'application.components.*'
,
'application.extensions.wrest.*'
,
'application.extensions.wrest.actions.*'
,
'application.extensions.wrest.behaviors.*'
),
'modules'
=>
array
(
// uncomment the following to enable the Gii tool
/*
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'Enter Your Password Here',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
*/
),
// application components
'components'
=>
array
(
'modules'
=>
array
(
),
// application components
'components'
=>
array
(
'clientScript'
=>
array
(
'scriptMap'
=>
array
(
'jquery.js'
=>
false
,
...
...
@@ -51,41 +45,41 @@ return array(
'itemTable'
=>
'users'
,
'connectionID'
=>
'db'
),
'user'
=>
array
(
// enable cookie-based authentication
'class'
=>
'WebUser'
,
'allowAutoLogin'
=>
true
),
'session'
=>
array
(
'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
(
'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'
)
)
)
),
'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'
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'
=>
array
(
// this is used in contact page
'adminEmail'
=>
'webmaster@example.com'
),
);
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment