我有一个基于Yii Framework的项目。我按照本指南为我的yii项目实现了boostrap,但是我收到了错误:
Invalid Bootstrap path and CDN URL not set. Set vendor.twbs.bootstrap.dist alias or cdnUrl parameter in the configuration file.
这是网址http://www.getyiistrap.com/site/started
我跟着一切。我没有使用作曲家。我刚刚下载了zip文件。
这是我的配置文件供参考:
<?php
//取消注释以下内容以定义路径别名 // Yii :: setPathOfAlias(&#39; local&#39;,&#39; path / to / local-folder&#39;);
//这是主要的Web应用程序配置。任何可写的 //可以在此处配置CWebApplication属性。 返回数组( &#39;基本路径&#39; = GT;目录名(文件)DIRECTORY_SEPARATOR&#39;。。。。&#39 ;, &#39; name&#39; =&gt;&#39;我的网络应用程序&#39;,
// preloading 'log' component
'preload'=>array('log'),
// path aliases
'aliases' => array(
'bootstrap' => realpath(__DIR__ . '/../extensions/bootstrap'), // change this if necessary
),
// autoloading model and component classes
'import'=>array(
'application.models.*',
'application.components.*',
'bootstrap.helpers.*',
),
'modules'=>array(
// uncomment the following to enable the Gii tool
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'password',
// 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,
),
'bootstrap' => array(
'class' => 'bootstrap.components.TbApi',
),
// 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>',
),
),
// 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'=>'webmaster@example.com',
),
);
我跟着放置引导程序文件的位置。我一直在网上搜索但找不到答案。感谢
答案 0 :(得分:0)
在config/main.php
:
Yii::setPathOfAlias('bootstrap', dirname(__FILE__) . '/../extensions/bootstrap');
然后在组件中:
// application components
'components' => array(
...
'bootstrap' => array(
'class' => 'bootstrap.components.Bootstrap'
),
并删除您的代码:
// path aliases
'aliases' => array(
'bootstrap' => realpath(__DIR__ . '/../extensions/bootstrap'),
),
检查引导程序是否在extensions/bootstrap
这样它应该有效。
答案 1 :(得分:0)
我假设你使用的是YiiStrap 2.x.x
你可以设置
// path aliases
'aliases' => array(
'bootstrap' => realpath(__DIR__ . '/../extensions/bootstrap'),
'vendor.twbs.bootstrap.dist' => realpath(__DIR__ . '/../extensions/bootstrap'),
),
并且错误消失了。 但我认为YiiStrap 2.x.x仍然不稳定且有问题,所以我不得不回滚到1.x.x并等待稳定发布。