I installed reCaptcha and now when I try to log in to my own site I get the error: "To use reCAPTCHA you must get an API key from http://recaptcha.net/api/getkey"
Of course I need to be logged in to do anything about the error. How can I disable reCaptcha? Do I need to go into my database to fix this?
This is a D5 site and module version.
............................................................................ Jean Gazis www.jeangazis.com www.boxofrain.com 212-937-7654
"Everything that seems far-fetched is true, and everything plausible is invented.” -- John Norfolk
I installed reCaptcha and now when I try to log in to my own site I get the error: "To use reCAPTCHA you must get an API key from http://recaptcha.net/api/getkey"
Of course I need to be logged in to do anything about the error. How can I disable reCaptcha? Do I need to go into my database to fix this?
That is one way. In the system table you will find a record with type "module" and name "recaptcha" or something like that. Make the status 0 (zero) and that disables it.
HTH
Thanks, I will ask my sysadmin to do this. Is there another way?
I don't remember exactly what I did when installing/setting up reCaptcha, because I did it just before I went away on vacation. (Not smart, I know!) ............................................................................. Jean Gazis www.jeangazis.com www.boxofrain.com 212-937-7654
"Everything that seems far-fetched is true, and everything plausible is invented.” -- John Norfolk
On Wed, Sep 15, 2010 at 9:56 AM, Fred Jones fredthejonester@gmail.comwrote:
I installed reCaptcha and now when I try to log in to my own site I get
the
error: "To use reCAPTCHA you must get an API key from http://recaptcha.net/api/getkey"
Of course I need to be logged in to do anything about the error. How can
I
disable reCaptcha? Do I need to go into my database to fix this?
That is one way. In the system table you will find a record with type "module" and name "recaptcha" or something like that. Make the status 0 (zero) and that disables it.
HTH
[ Drupal support list | http://lists.drupal.org/ ]
You could just do a variable override in your settings.php. Get your recaptcha public and private keys and add:
$conf['recaptcha_public_key']='{your public key}'; $conf['recaptcha_private_key']='{your private key}';
Into settings.php
Jamie Holly http://www.intoxination.net http://www.hollyit.net
On 9/15/2010 10:34 AM, Fred Jones wrote:
Thanks, I will ask my sysadmin to do this. Is there another way?
I suppose if you remove the recaptcha module files that would also do it. :)