why always coming this error "The reCAPTCHA wasn't entered correctly. Go back and try it again.(reCAPTCHA said: incorrect-captcha-sol)"

6,199 views
Skip to first unread message

Salman Ahmad

unread,
Apr 28, 2012, 8:08:30 AM4/28/12
to reCAPTCHA
I am getting this error all time
"
The reCAPTCHA wasn't entered correctly. Go back and try it again.
(reCAPTCHA said: incorrect-captcha-sol)
"
Although i am entering the correct captcha.

please help

you can see my form here http://www.theprisonsource.com/model/mailform.php?id=210

PJH

unread,
Apr 28, 2012, 8:10:58 AM4/28/12
to reca...@googlegroups.com
http://code.google.com/p/recaptcha/wiki/FAQ#I_keep_getting_%22incorrect-captcha-sol%22_even_though_I&#


On Sat, Apr 28, 2012 at 12:08 PM, Salman Ahmad <salmana...@gmail.com> wrote:
I am getting this error all time
"
The reCAPTCHA wasn't entered correctly. Go back and try it again.
(reCAPTCHA said: incorrect-captcha-sol)
"
Although i am entering the correct captcha.



--
PJH


Salman Ahmad

unread,
Apr 28, 2012, 8:20:05 AM4/28/12
to reCAPTCHA
I got this error now after putting check

"
_POST: =========
Array
(
[from] =>
[mailadd] =>
[subject] =>
[addr] =>
[addrr] =>
[city] =>
[state] =>
[zipc] =>
[message] =>
[recaptcha_challenge_field] =>
03AHJ_Vutp97ebd1aqwT1U9DfRjgx4Mckm6rgrDTHRqqmEr6lWl9dPN3bV_QCBWDhmOgdGM6_Qw0eoeCAZSDrvtJgm416ep1m8eRgE3g_hXZHhYR3694RsVpqTVGMJgW1W98zHrAEpkvoSeIk3X_5Uo2X35konNGrmTA
[recaptcha_response_field] =>
)

=========

The reCAPTCHA wasn't entered correctly. Go back and try it again.
(reCAPTCHA said: incorrect-captcha-sol)
"

On Apr 28, 5:10 pm, PJH <pauljherr...@gmail.com> wrote:
> http://code.google.com/p/recaptcha/wiki/FAQ#I_keep_getting_%22incorre...

Salman Ahmad

unread,
Apr 28, 2012, 8:28:34 AM4/28/12
to reCAPTCHA
this is my code:


<script type="text/javascript">
var RecaptchaOptions = {
theme : 'clean',
custom_theme_widget: 'recaptcha_widget'
};
</script>
<!--catcha code-->
<form action="mail2.php" method="POST" enctype="multipart/form-data">




<p style="font-size:0.8em;">Your Name*:</p>
<input type="text" name="from" value="" style="width:381px; height:
20px;" /><br /><br>


<p style="font-size:0.8em;">Your Email*:</p><input type="text"
name="mailadd" value="" style="width:381px; height:20px;" /><br /><br>
<p style="font-size:0.8em;">Subject:</p><input type="text"
name="subject" value="" style="width:381px; height:20px;" /><br /><br>
<p style="font-size:0.8em;">Your address*:</p><input type="text"
name="addr" value="" style="width:381px; height:20px;" /><br /><br>
<p style="font-size:0.8em;">Your address(cont):</p><input type="text"
name="addrr" value="" style="width:381px; height:20px;" /><br /><br>
<p style="font-size:0.8em;">City*:</p><input type="text" name="city"
value="" style="width:381px; height:20px;" /><br /><br>
<p style="font-size:0.8em;">State*:</p><input type="text" name="state"
value="" style="width:381px; height:20px;" /><br /><br>
<p style="font-size:0.8em;">Zip Code:</p><input type="text"
name="zipc" value="" style="width:381px; height:20px;" /><br /><br /
><br>



<p>Message:<br />

<textarea cols="47" rows="10" name="message"></textarea></p><br />



<p style="font-size:0.8em;">Attach Your Photo:</p><input type="file"
name="fileatt" /><br /><br />
<?php
require_once('recaptchalib.php');
$publickey = "6Ldjy9ASAAAAAK8j5EddDwBGkB7KplCl9GmMm0Ti"; //
you got this from the signup page
echo recaptcha_get_html($publickey);
?>
<!--catcha code-->
<div id="recaptcha_widget" style="display:none">

<div id="recaptcha_image"></div>
<div class="recaptcha_only_if_incorrect_sol"
style="color:red">Incorrect please try again</div>

<span class="recaptcha_only_if_image">Enter the words above:</span>
<span class="recaptcha_only_if_audio">Enter the numbers you hear:</
span>

<input type="text" id="recaptcha_response_field"
name="recaptcha_response_field" />

<div><a href="javascript:Recaptcha.reload()">Get another CAPTCHA</
a></div>
<div class="recaptcha_only_if_image"><a
href="javascript:Recaptcha.switch_type('audio')">Get an audio CAPTCHA</
a></div>
<div class="recaptcha_only_if_audio"><a
href="javascript:Recaptcha.switch_type('image')">Get an image CAPTCHA</
a></div>

<div><a href="javascript:Recaptcha.showhelp()">Help</a></div>

</div>

<script type="text/javascript"
src="http://www.google.com/recaptcha/api/challenge?
k=6Ldjy9ASAAAAAK8j5EddDwBGkB7KplCl9GmMm0Ti">
</script>
<noscript>
<iframe src="http://www.google.com/recaptcha/api/noscript?
k=6Ldjy9ASAAAAAK8j5EddDwBGkB7KplCl9GmMm0Ti"
height="300" width="500" frameborder="0"></iframe><br>
<textarea name="recaptcha_challenge_field" rows="3" cols="40">
</textarea>
<input type="hidden" name="recaptcha_response_field"
value="manual_challenge">
</noscript>
<!--catcha code-->

<p><input type="submit" value="Send Email" /></p>

</form>


please guide me where is error? why my captcha response field is empty?

Salman Ahmad

unread,
Apr 28, 2012, 8:42:36 AM4/28/12
to reCAPTCHA
you can see my above code, there is post method that i am using and
all code within <form> , no tables.
please help me to analyse where is error?

your help and answer will be highly appreciated.
I am worrying about this, why this error is coming although all things
are going right in my code.

PLEASE HELP !

Salman Ahmad

unread,
Apr 28, 2012, 11:46:08 AM4/28/12
to reCAPTCHA
ANYBODY CAN ANSWER AND HELP ME PLEASE !

Bruce Carey

unread,
Apr 28, 2012, 12:00:58 PM4/28/12
to reca...@googlegroups.com
If all of this is INSIDE a table, it won't work. Move the <form> and </form> tags OUTSIDE of the <table> tags and all should work properly.


--
You received this message because you are subscribed to the Google Groups "reCAPTCHA" group.
To post to this group, send email to reca...@googlegroups.com.
To unsubscribe from this group, send email to recaptcha+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/recaptcha?hl=en.


Salman Ahmad

unread,
Apr 28, 2012, 12:03:56 PM4/28/12
to reCAPTCHA
No, Bro.
There in no <table> in my page. this is the reason i am worrying why
it is not working although everything looks perfect.
where is error? i d'nt know

On Apr 28, 9:00 pm, Bruce Carey <bcar...@gmail.com> wrote:
> If all of this is INSIDE a table, it won't work. Move the <form> and
> </form> tags OUTSIDE of the <table> tags and all should work properly.
>

Will Case

unread,
Apr 28, 2012, 12:04:30 PM4/28/12
to reca...@googlegroups.com
there is no problem putting form tags inside of a table, as long as they are done correctly.

Bruce Carey

unread,
Apr 28, 2012, 12:07:36 PM4/28/12
to reca...@googlegroups.com
Have you been through this page? Helped me immensely when I had a similar error: http://code.google.com/p/recaptcha/wiki/FAQ#I_keep_getting_%22incorrect-captcha-sol%22_even_though_I&#

Salman Ahmad

unread,
Apr 28, 2012, 12:12:02 PM4/28/12
to reCAPTCHA
yes, I have read this page.
Everything is looking perfect yet, but still captcha field is empty, i
d'nt know why values are not going.
Can anybody suggest anyother captcha free script link please?

On Apr 28, 9:07 pm, Bruce Carey <bcar...@gmail.com> wrote:
> Have you been through this page? Helped me immensely when I had a similar
> error:http://code.google.com/p/recaptcha/wiki/FAQ#I_keep_getting_%22incorre...<http://code.google.com/p/recaptcha/wiki/FAQ#I_keep_getting_%22incorre...>
>
>
>
>
>
>
>
> On Sat, Apr 28, 2012 at 12:04 PM, Will Case <hallowsdra...@gmail.com> wrote:
> > **
> > there is no problem putting form tags inside of a table, as long as they
> > are done correctly.
>
> >  *From:* Bruce Carey <bcar...@gmail.com>
> > *Sent:* Saturday, April 28, 2012 12:00 PM
> > *To:* reca...@googlegroups.com
> > *Subject:* Re: why always coming this error "The reCAPTCHA wasn't entered
> > correctly. Go back and try it again.(reCAPTCHA said: incorrect-captcha-sol)"
>
> > If all of this is INSIDE a table, it won't work. Move the <form> and
> > </form> tags OUTSIDE of the <table> tags and all should work properly.
>

PJH

unread,
Apr 28, 2012, 1:08:31 PM4/28/12
to reca...@googlegroups.com


On Sat, Apr 28, 2012 at 12:20 PM, Salman Ahmad <salmana...@gmail.com> wrote:
   [recaptcha_response_field] =>
)

The response being typed in is not making it to your validation script. That's why it's giving incorrect-captcha-sol


On Sat, Apr 28, 2012 at 3:46 PM, Salman Ahmad <salmana...@gmail.com> wrote:
ANYBODY CAN ANSWER AND HELP ME PLEASE !

This group is for volunteers to provide help to others. If you want a <30 second response time to your problems using a free service, perhaps you should consider paying someone for their time.

--
PJH


Reply all
Reply to author
Forward
0 new messages