在我的网络应用程序中,我想同时使用Yiibooster和yiistrap.Yiibooster单独工作,但Yiistrap和Yiibooster一起发出以下错误
/extensions/s/bootstrap/helpers/TbArray.php failed to open stream: No such file or directory
我的cpnfig / main.php代码
'aliases' => array(
'bootstrap' => realpath(__DIR__ . '/../extensions/bootstrap'), // change this if necessary
'yiistrap' => realpath(__DIR__ . '/../extensions/yiistrap'),
),
'modules'=>array
(
'gii'=>array
(
'class'=>'system.gii.GiiModule',
'password'=>'',
'ipFilters'=>array('127.0.0.1','::1'),
'generatorPaths' => array('bootstrap.gii'),
),
),
'bootstrap' => array
(
'class' => 'ext.bootstrap.components.Bootstrap',
'responsiveCss'=>true,
),
'Yiistrap' => array
(
'class' => 'yiistrap.components.TbApi',
//'responsiveCss'=>true,
),
在我的扩展文件夹中,我为yiibooster保存为“bootstrap”,为yiistrap保存为“yiistrap”。我该如何解决这个问题?任何身体请帮助我..
答案 0 :(得分:0)
答案 1 :(得分:0)
同一帖子在这里:Yiistrap configuration issue
您需要添加到您的配置中:
'import' => array(
'bootstrap.helpers.TbHtml',
'bootstrap.helpers.TbArray',
'bootstrap.behaviors.TbWidget',
'bootstrap.widgets.*'
)