I've just installed this plugin on my 3.6.0 installation of VBulletin, everything went smooth except that when I try to register I see this error:
Quote:
Call to undefined function recaptcha_get_html() in register.php line 864
|
I fixed the problem by doing the following
- Made sure the access conditions for the newly uploaded or modified PHP files were set to the same ones as the other PHP files in the same dir (in my case this was 775)
- Added the following line to register.php
Code:
require_once(DIR . '/includes/functions_recaptcha.php');
This was not in the installations steps described in the beginning, I figured it should work if I add the include manually. It works fine on my end. Thanks for offering this plugin.
I have a question: are there instructions on which modifications to apply to make reCaptcha show up when an anonymous user posts a message? I can try to derive them by studying the original example, but perhaps someone has already gone through this procedure?