Поправки для совместимости подключения файлов в php более ранней версии

1 parent 8d133f18
......@@ -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,
......
......@@ -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
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!