I installed today this mod in vb 4.2.5 and PHP 7.1
After try, get this error:
Quote:
Fatal error: Call to undefined method vB_HumanVerify_Abstract::vB_HumanVerify_Abstract() in /home/mydomain/public_html/includes/class_humanverify_new_recaptcha.php on line 14
|
With solution indicate by MarkFL:
Code:
On line 14 replace:
parent::vB_HumanVerify_Abstract($registry);
with
parent::__construct($registry);
Work perfect in vb 4.2.5 and php 7.1.
Thanks.