0

每当我尝试从前端添加文章时,我都会收到主题中所写的错误。我以作者身份登录,Textfilters 设置为无过滤。我也尝试以管理员身份登录 - 同样的错误。我收到一条消息,并且文章在那里,但是在尝试添加文章时出现错误消息并不是那么漂亮。Joomla 版本 2.5.4 - 都应该更新。可能是什么问题呢?谢谢

4

1 回答 1

1

如果您不使用 Seblod CCK 组件,请移除 Seblod 功能。

查找文件:modules\mod_news_pro_gk4\gk_classes\gk_utils.php 查找并删除下面的第 17 到 27 行。

  // 
  $cck_path = JPATH_BASE . DS . 'components' . DS . 'com_cck';
  if (file_exists($cck_path)) {
     if(JComponentHelper::isEnabled('com_cck', true)){
        // Force parsing plugin if SEBLOD is used
        if($this->config['parse_plugins'] == FALSE) {
            $text = JHtml::_('content.prepare', $text);
        }
        $text = trim(substr(strip_tags( $text,"<br /><br><strong></strong><p></p><i></i><b></b><span></span><ul></ul><li></li><blockquote></blockquote>"),0));
     }
  }
于 2012-08-06T08:15:03.867 回答