Open GoogleCodeExporter opened 9 years ago
I experienced the same problem using the Perl Captcha::ReCAPTCHA module.
I ended up using javascript to post the url. Less handy, for sure.
Pseudo code:
<form...
<input type='button' value='Send Email' onclick="javascript:check();"></form>
<script language="javascript">
function check() {
var c = document.getElementById('recaptcha_challenge_field').value;
var r = document.getElementById('recaptcha_response_field').value;
window.location = "http://my.host/feedback.pl?recaptcha_challenge_field=" + c +
"&recaptcha_response_field=" + r;
// of course, i used other fields for the mail, address, etc...
</script>
Original comment by daveoffe...@gmail.com
on 22 Jun 2009 at 10:25
Thank you for sharing your tweak. Is it working now ?
Can you please upload/attach here your PHP file so that I can study.
This problem was generally occurred if someone using CB1.1 or older. But
couldn't
figure out why....
Original comment by ios...@gmail.com
on 23 Jun 2009 at 5:00
Original issue reported on code.google.com by
ios...@gmail.com
on 24 Jan 2009 at 5:24