0

I tried to upgrade from Joomla 3.3.6 to Joomla 3.4.1. I see this error when I try to go the admin configuration page "JHtmlBehavior::formvalidator not found". How to fix it?

Learner2011
  • 287
  • 2
  • 6
  • 25

3 Answers3

0

Try using the following to replace the code shown in your question

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

which is specified in the Joomla documentation.

Lodder
  • 19,758
  • 10
  • 59
  • 100
0

I solved the issue by installing the Joomla 3.4.1 package thru' FTP upgrading and it solved the issue.

Learner2011
  • 287
  • 2
  • 6
  • 25
-1

So i have got the same problem (500 JHtmlBehavior::formvalidator not found.) & it happened after update but in the admin panel. I fixed it

file - /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(){...}

Now you have two methods with different names ). I think this error happened because joomla updated partially