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?
How to fix JHtmlBehavior::formvalidator not found
3.4k Views Asked by Learner2011 At
3
There are 3 best solutions below
0
On
Try using the following to replace the code shown in your question
JHtml::_('behavior.formvalidator');
which is specified in the Joomla documentation.
0
On
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
I solved the issue by installing the Joomla 3.4.1 package thru' FTP upgrading and it solved the issue.