http://www.cniska.net/yii-bootstrap/setup.htmlのYii-Bootstrapのインストール手順に従いましたが、config/main.phpで設定されたパスエイリアスが機能しません。
<?php
// path alias for bootstrap
Yii::setPathOfAlias('bootstrap',Yii::getPathOfAlias(dirname(__FILE__).'/../extensions/bootstrap'));
// This is the main Web application configuration. Any writable
// CWebApplication properties can be configured here.
return array(
...
protected / extends / bootstrap/...は私のブートストラップディレクトリです。
layouts/main.phpで使用したい場合
Yii::app()->bootstrap->register();
「エイリアス「bootstrap.components.Bootstrap」が無効です。既存のディレクトリまたはファイルを指していることを確認してください。」と表示されます。
たくさん試しましたが、うまくいきません。何か案は?