Quote:
Originally Posted by jetkai
If anyone is having issues with PHP 7+ / vb 4.2.5 with the following error Call to undefined method vB_HumanVerify_Abstract::vB_HumanVerify_Abstract() on line 14
You'll need to replace the following in class_humanverify_new_recaptcha.php:
Code:
function vB_HumanVerify_New_Recaptcha(&$registry)
{
parent::vB_HumanVerify_Abstract($registry);
}
with
Code:
function vB_HumanVerify_New_Recaptcha(&$registry)
{
parent::__construct($registry);
}
not sure if there are any more issues aside from this, but registering works now on my forum.
|
I'm using VB 4.2.5 on PHP 7.0. This trick solved my problem. Thanks!