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

1 parent 8d133f18
...@@ -13,8 +13,7 @@ defined('YII_DEBUG') or define('YII_DEBUG',true); ...@@ -13,8 +13,7 @@ defined('YII_DEBUG') or define('YII_DEBUG',true);
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
require_once($yii); require_once($yii);
/*require_once($webappl); Yii::$enableIncludePath = false;
Yii::createApplication('WebApplication', $config)->run();*/
Yii::createWebApplication($config)->run(); Yii::createWebApplication($config)->run();
Yii::app()->clientScript->scriptMap=array( Yii::app()->clientScript->scriptMap=array(
'jquery.js'=>false, 'jquery.js'=>false,
......
...@@ -6,33 +6,27 @@ ...@@ -6,33 +6,27 @@
// This is the main Web application configuration. Any writable // This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here. // CWebApplication properties can be configured here.
return array( return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=>'My Mail Admin', 'name'=>'My Mail Admin',
// preloading 'log' component // preloading 'log' component
'preload'=>array('log'), 'preload'=>array('log'),
// autoloading model and component classes // autoloading model and component classes
'import'=>array( 'import'=>array(
'application.models.*', 'application.models.*',
'application.components.*', 'application.components.*',
'application.extensions.wrest.*' 'application.extensions.wrest.*',
), 'application.extensions.wrest.actions.*',
'application.extensions.wrest.behaviors.*'
),
'modules'=>array( 'modules'=>array(
// uncomment the following to enable the Gii tool
/* ),
'gii'=>array(
'class'=>'system.gii.GiiModule', // application components
'password'=>'Enter Your Password Here', 'components'=>array(
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
*/
),
// application components
'components'=>array(
'clientScript' => array( 'clientScript' => array(
'scriptMap' => array( 'scriptMap' => array(
'jquery.js' => false, 'jquery.js' => false,
...@@ -51,41 +45,41 @@ return array( ...@@ -51,41 +45,41 @@ return array(
'itemTable' => 'users', 'itemTable' => 'users',
'connectionID'=>'db' 'connectionID'=>'db'
), ),
'user'=>array( 'user'=>array(
// enable cookie-based authentication // enable cookie-based authentication
'class' => 'WebUser', 'class' => 'WebUser',
'allowAutoLogin'=>true 'allowAutoLogin'=>true
), ),
'session' => array( 'session' => array(
'sessionTableName' => 'websessions', 'sessionTableName' => 'websessions',
'class' => 'system.web.CDbHttpSession', 'class' => 'system.web.CDbHttpSession',
'connectionID' => 'db' 'connectionID' => 'db'
), ),
'db'=>array( 'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=mail', 'connectionString' => 'mysql:host=localhost;dbname=mail',
'emulatePrepare' => true, 'emulatePrepare' => true,
'username' => 'root', 'username' => 'root',
'password' => '', 'password' => '',
'charset' => 'utf8' 'charset' => 'utf8'
), ),
'errorHandler'=>array( 'errorHandler'=>array(
'errorAction'=>'api/error/error' 'errorAction'=>'api/error/error'
), ),
'log'=>array( 'log'=>array(
'class'=>'CLogRouter', 'class'=>'CLogRouter',
'routes'=>array( 'routes'=>array(
array( array(
'class'=>'CFileLogRoute', 'class'=>'CFileLogRoute',
'levels'=>'error, warning, trace, profile, info' 'levels'=>'error, warning, trace, profile, info'
) )
) )
) )
), ),
// application-level parameters that can be accessed // application-level parameters that can be accessed
// using Yii::app()->params['paramName'] // using Yii::app()->params['paramName']
'params'=>array( 'params'=>array(
// this is used in contact page // this is used in contact page
'adminEmail'=>'webmaster@example.com' '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!