2

我已将引导扩展添加到我的 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

4

3 回答 3

3

我遇到了同样的问题。我授予该文件夹的完全(777)权限。

试试看。

于 2013-06-11T08:11:50.540 回答
2

ext.bootstrap.src.components.Bootstrap'通过:更新组件

EG:如果你是在扩展名下提取的,那么按照上面的命令:

句法:ext.path_to.Bootstrap

于 2013-05-18T16:35:15.120 回答
0

你有两个选择。一,在您的config/main.php文件或等效文件中,添加以下行:

Yii::setPathOfAlias('bootstrap', dirname(__FILE__).'/../extensions/yii-bootstrap');

您需要yii-bootstrap用实际调用的引导文件夹替换的位置。

或者二,你可以简单地首先正确地引用那个引导文件夹。如果你的 bootstrap 安装是像我的一样安装在 /extensions/yii-bootstrap 中,那么使用这个别名来加载组件:

ext.yii-bootstrap.components.Bootstrap

简而言之,您的问题可能是您没有正确定义安装路径。使用上述两种解决方案之一,以解决该问题。

于 2013-01-15T22:36:07.330 回答