0

我尝试从 Joomla 3.3.6 升级到 Joomla 3.4.1。当我尝试进入管理配置页面“JHtmlBehavior::formvalidator not found”时,我看到了这个错误。如何解决?

4

3 回答 3

0

尝试使用以下内容替换问题中显示的代码

JHtml::_('behavior.formvalidator');

这是在 Joomla 文档中指定的。

于 2015-06-03T10:24:36.650 回答
0

我通过 FTP 升级安装 Joomla 3.4.1 软件包解决了这个问题,它解决了这个问题。

于 2015-06-03T16:52:20.823 回答
-1

所以我遇到了同样的问题(未找到 500 JHtmlBehavior::formvalidator。)它发生在更新后但在管理面板中。我修好了它

文件 - /libraries/cms/html/behavior.php

You need to find smth like this 
    public static function formvalidation(){...}
and add the same method under formvalidation(){...} but with another name
    public static function formvalidator(){...}

现在您有两个名称不同的方法)。我认为发生此错误是因为 joomla 部分更新

于 2015-06-05T18:36:57.523 回答