Login     Sign up
No more captcha!
Toni Lenia M. (@toni)
Join date: Jul 8th 2010
Community posts: 28
View Profile
Send Message

Hi guys!!

First, congratulations on the new version. Now, i'm testing everything and i'm very happy :)

Only a support request:

Please, I do not want any captcha system in my community. These systems are useful, thanks for the news, but I do not need.

Please, how I can "turn off" the captcha system in the new version? Waiting your response, thanks!! ;)

168 months ago
adil (@adil)
Join date: May 9th 2010
Community posts: 202
View Profile
Send Message

me too is asking the same !!! I'm now trying for almost 1 hours to find where it com from and I can not find!! I do not need it maybe in the first registration it is OK but when ever the member wants to log this is too much!!!

168 months ago
Dum Dum Gratis (@domgratis)
Join date: Aug 4th 2010
Community posts: 82
View Profile
Send Message

I'm with you,, it's to much for me. The member will be bothered with it.

Please give an option or a tutorial how to disable this captcha.

168 months ago
Vincent T (@vincent)
Join date: Jun 18th 2010
Community posts: 298
View Profile
Send Message

hi,
we will add an option to disable captcha easily.
If you want remove it now, open your "modules/member/member.php" with a text editor. find these lines and delete them:
line 54:
[code]
if (!$_SESSION['login_cd']) {
c( recaptcha_get_html($captcha['publickey'],''));
}
[/code]

and line 77:
[code]
if (!$_SESSION['login_cd']) {
if ($_POST["recaptcha_challenge_field"]) {
$resp = recaptcha_check_answer ($captcha['privatekey'],
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);

            if (!$resp->is_valid) {
                    c('<script language="javascript" >
            $(document).ready( function(){
                                $("#recaptcha_response_field").focus();
        });
                                </script>');
                    $captchaerror = $resp->error;
                    $hold = 1;
            }
        }
        else {
            c('<script language="javascript" >
            $(document).ready( function(){
                                $("#recaptcha_response_field").focus();
        });
                                </script>');
            $hold = 1;
        }
    }

[/code]

and line 149:
[code]
if (!$_SESSION['login_cd']) {
c( recaptcha_get_html($captcha['publickey'],$captchaerror));
}
[/code]
That's all for the removal of login captcha.

168 months ago
adil (@adil)
Join date: May 9th 2010
Community posts: 202
View Profile
Send Message

Before I remove it.. It is not removed from new member sign up ??? yes

168 months ago
Vincent T (@vincent)
Join date: Jun 18th 2010
Community posts: 298
View Profile
Send Message

Just now we uploaded a build. You can re-download and replace the "modules/member/member.php". This new file allow member to attempt 3 times without image verification.

Hi Adil,
You can remove the image from signup form by the same way as my previous post mentioned. But I don't recommend to do that. Days ago an user has reported that his Jcow network was attacked by bots.

168 months ago
adil (@adil)
Join date: May 9th 2010
Community posts: 202
View Profile
Send Message

I do not want to remove it from the sign up... I was just wondering if this removal you are listing here will do!!!

168 months ago
Toni Lenia M. (@toni)
Join date: Jul 8th 2010
Community posts: 28
View Profile
Send Message

Hi Vincent,

Thanks for everything, wonderful as always.

168 months ago
Kandar van Atjeh (@kandar)
Join date: Sep 15th 2010
Community posts: 1
View Profile
Send Message

Thank's Vincent,u are smart :)

166 months ago