Version: 1.0.0, by kh99
Developer Last Online: Sep 2020
Category: Anti-Spam Options -
Version: 4.x.x
Rating:
Released: 12-10-2014
Last Update: 02-21-2015
Installs: 550
Uses Plugins Template Edits
Re-useable Code Additional Files Translations
No support by the author.
(Note: This mod was renamed. The original name was "New reCAPTCHA Human Verification")
What is it?
----------------------------
This mod adds reCAPTCHA v2 as an option in the Human Verification Manager.
Note: The original reCAPTCHA used default keys if you didn't enter your own, so you could leave the key fields blank. This version requires you to have your own keys for your domain. To create them, go to this page (click on the "Get reCAPTCHA" button). It may take a short time after creating the keys before they will work, so if you get "ERROR: Invalid domain for site key", wait a while and try again.
Installation:
----------------------------
1) Upload the file in the "upload" folder to your server.
2) Import the product XML file from the Product Manager.
3) If you don't already have keys, go to this page and create keys for your domain. (If you already have keys you can get them from that page as well).
4) Go to Settings > Human Verification Manager, select "New reCAPTCHA" for the Verification Library, and click Save.
5) Enter your keys on the options page, and select the light or dark widget as desired (apparently white and black are the only options at this time). You could select "Audio" to default to audio instead of image for the challenge, but the widget seems to have a bug in it at the moment so I recommend leaving it set to "image". Click Save when you're done selecting options.
6) You can check the configuration and do a test by clicking on "Click here to test connection" which appears under the description in the Human Verification Manager.
7) Do a test registration (or other action that requires hv) to test that your keys are entered correctly and everything is working.
8) If you are upgrading from version 0.9, you can remove the file includes/class_humanverify_newrecaptcha.php (the one without the third underscore) from your server.
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!
This mod stopped working around 21 Oktober. Also getting the error that recaptcha cannot be verified due to server error. The test feature in the admin panel works fine.