Я только что установил фреймворк yii, а затем попытался установить на него yiistrap. Я следовал за руководством на:
http://www.getyiistrap.com/site/started
а также
http://www.yiiframework.com/forum/index.php/topic/60019-how-to-install-yiistrap-using-composer/
но дело доходит до той же ошибки:
CException
Свойство «CUrlManager.bootstrap» не определено.
Я использую yii-bootstrap-0.9.12.r211, как указано в сообщении участника: Twitter Bootstrap в Yii, но это все еще не сработало.
Я сделал 3 модификации:
Внутренние расширения / bootstrap / components / Bootstrap.php
public function init() {
$this->registerAllCss();
$this->registerJs();
parent::init();
}
Внутри config / main.php
<?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.
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
return array(
...
'theme'=>'bootstrap',
'modules'=>array(
'gii'=>array(
'generatorPaths'=>array(
'bootstrap.gii',
),
),
),
// preloading 'log' component
'preload'=>array('log'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
'bootstrap.helpers.TbHtml',
),
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
...
),
),
// application components
'components'=>array(
'user'=>array(
// enable cookie-based authentication
'allowAutoLogin'=>true,
),
// uncomment the following to enable URLs in path-format
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
'bootstrap'=>array(
'class'=>'bootstrap.components.Bootstrap',
),
),
// database settings are configured in database.php
'db'=>require(dirname(__FILE__).'/database.php'),
'errorHandler'=>array(
// use 'site/error' action to display errors
'errorAction'=>'site/error',
),
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
// uncomment the following to show log messages on web pages
/*
array(
'class'=>'CWebLogRoute',
),
*/
),
),
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'=>array(
// this is used in contact page
'adminEmail'=>'[email protected]',
),
);
Внутренние виды / макеты / main.php, в середине <head> ... </head>
<?php Yii::app()->bootstrap->register(); ?>
Пожалуйста, помогите мне сэкономить мое время. Благодарю.
Вы определили 'bootstrap'
внутри массива url-manager. Это неверно Вы должны сделать это:
'urlManager'=>array(
'urlFormat'=>'path',
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
),
'bootstrap'=>array(
'class'=>'bootstrap.components.Bootstrap',
),
Других решений пока нет …