杰奇2.4UTF-8开源版小说编辑报错问题,解决方案

杰奇2.4开源版在编辑小说的时候,如果输入了标签就会报错,原因是class/user.php的423行左右存在可能是解密导致的问题,而且没有去修复。

详细报错代码例如

Catchable fatal error: Object of class JieqiUsersHandler could not be converted to string in /www/wwwroot/www.xxside.com/class/users.php on line 423

解决方式就是,编辑文件,知道423行左右,将以下代码

if (1 <= $numrows) {
      $tmpvar = 'Jieqi' . ucfirst($this->basename);
      ${$this}->basename = new $tmpvar();
      ${$this}->basename->setVars($this->db->fetchArray($result));
      return ${$this}->basename;
}

改成

if (1 <= $numrows) {
      $tmpvar = 'Jieqi' . ucfirst($this->basename);
      ${$this->basename} = new $tmpvar();
      ${$this->basename}->setVars($this->db->fetchArray($result));
      return ${$this->basename};
}
}

本文转自:https://www.landafu.com/3411.html

原创文章,作者:Tony,如若转载,请注明出处:https://www.xxside.com/4286.html

思德心语,壹群:799239814

(0)
上一篇 2021年4月15日 下午9:55
下一篇 2021年4月16日 上午11:15

相关推荐

发表评论

登录后才能评论