Chinaunix首页 | 论坛 | 博客
  • 博客访问: 162744
  • 博文数量: 46
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 466
  • 用 户 组: 普通用户
  • 注册时间: 2012-10-31 23:12
个人简介

知乎:http://www.zhihu.com/people/chanpinjinglizhilu

文章分类

全部博文(46)

分类: PHP

2016-02-17 17:48:55

相关官网教程以及下载地址:

安装后遇到表单页面无法访问,目前网上没找到相关解决教程,特把解决过程记录于此。


1.错误一 Declaration of BActiveForm::checkBox() should be compatible with CActiveForm::checkBox($model, $attribute, $htmlOptions = Array)






解决方法:

1.修改 protected/extensions/bootstrap-theme/widgets/BActiveForm.php 的 234行

点击(此处)折叠或打开

  1. public function checkBox(CModel $model, $attribute, $htmlOptions=array()) {

点击(此处)折叠或打开

  1. public function checkBox($model, $attribute, $htmlOptions=array()) {


2.下面一个函数同理

点击(此处)折叠或打开

  1. public function labelEx(CModel $model, $attribute, $htmlOptions=array())



点击(此处)折叠或打开

  1. public function labelEx($model, $attribute, $htmlOptions=array())

错误二:Declaration of BHtml::linkButton() should be compatible with CHtml::linkButton($label = 'submit', $htmlOptions = Array)

修改:protected/extensions/bootstrap-theme/helpers/BHtml.php 199行

点击(此处)折叠或打开

  1. public static function linkButton($label, $url = '#', $htmlOptions = array()) {
  2. 改为下面
  3.     public static function linkButton($label='submit',$htmlOptions = array()) {


页面成功显示:



阅读(2255) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~