我已经按照设置指南中的说明添加了bootstrap Extension to my yii webapp。扩展文件夹中的所有文件夹都是rwrwrw但我收到上面写的错误。可能是什么原因?我已经从yii :: Import中抛弃了路径,并且该路径是正确的。
谢谢!
使用代码进行编辑
这是我的配置:
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/bootstrap');
//Yii::setPathOfAlias('bootstrap', '/Users/gerritlober/Sites/yii/webapp/protected/extensions/bootstrap');
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
'name'=>'My Carpool',
'theme' => 'bootstrap',
// preloading 'log' component
'preload'=>array('log'),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
),
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'xxx',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
'generatorPaths'=>array(
'bootstrap.gii',
),
),
),
// 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>',
),
),
/*
'db'=>array(
'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',
),*/
// uncomment the following to use a MySQL database
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=carpool_dev',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'enableProfiling' => true,
),
'authManager'=>array(
'class'=>'CDbAuthManager',
'connectionID'=>'db',
),
'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',
'categories' => 'system.db.*,GLWeb.*,application.*'
),
),
),
'bootstrap'=>array(
'class'=>'bootstrap.components.Bootstrap',
),
),
// application-level parameters that can be accessed
// using Yii::app()->params['paramName']
'params'=>array(
// this is used in contact page
'adminEmail'=>'webmaster@example.com',
),
);
我的引导程序扩展名在./protected/extensions/bootstrap
中答案 0 :(得分:4)
我遇到了同样的问题。我授予了该文件夹的完整(777)权限。
试试吧。
答案 1 :(得分:2)
更新组件:
ext.bootstrap.src.components.Bootstrap'
,
EG:如果您是在扩展名下解压缩,请按照以上命令执行:
语法:ext.path_to.Bootstrap
答案 2 :(得分:0)
您有两种选择。一,在您的config/main.php
文件或同等文件中,添加以下行:
Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/yii-bootstrap');
您需要将yii-bootstrap
替换为实际调用的引导程序文件夹。
或者两个,您可以首先正确引用该引导程序文件夹。如果您的引导安装安装在/ extensions / yii-bootstrap中,那么使用此别名来加载组件:
ext.yii-bootstrap.components.Bootstrap
简而言之,您的问题可能是您没有正确定义安装路径。使用上述两种解决方案中的一种,以解决该问题。