Quote:
Originally Posted by Flipfloptrader
That doesn't fix the error that keeps occuring in the error log.
This is line 8:
Code:
class vB_HumanVerify_New_Recaptcha extends vB_HumanVerify_Abstract
I've tried to search for the fix but no joy.
|
That line is just declaring the class.
Try fixing line 14 as shown above and then make sure you reupload the class_humanverify_new_recaptcha.php to the correct location:
/includes/class_humanverify_new_recaptcha.php
If you still have a problem, reinstall the product using the XML file:
product-kh99_new_recaptcha_v1_0.xml
Also, what you are seeing is just a deprecation warning, not an error. That doesn't affect current use of the product. To suppress such warnings, add this to your /includes/config.php right under the <?php line at the very top:
Code:
define('SKIP_ALL_ERRORS', true);
define('SKIP_DS_ERRORS', true);
Then reupload config.php back to /includes/config.php