I am using the ASP.Net plugin and control provided by reCAPTCHA. I can successfully get the control to work if the submit button on the web form is not in a validationgroup. There is no validationgroup attribute for the reCAPTCHA control.
Has anybody had any success with this or any solutions to get the reCAPTCHA control to work when t...
I have a problem with the form I'm using in my webpage.
It allows the recaptcha but It also sends the email without validating the fields in the recaptcha box. This form is using Ajax and PHP.
I've pasted the code next:
<br> <br> <div id="fields">
<form action="javascript:alert('success!');">
<label>Nombre</label><INPUT class="textb...
Have any programming methods have been used to defeat reCAPTCHA?
I'm interested in seeing evidence and potentially demonstrations that reCAPTCHA in particular has been made obsolete by completely automated, humanless methods.
To clarify, not looking for reCAPTCHA-cheating solutions that involve humans in any way, whether teams in India...
A member of my company in greater ranking than myself refuses to use recaptcha.net on his website to thwart spam off of a public form. He thinks it would be difficult for anyone coming to our site to enter their information since the Turing Tests are "so darn hard to read".
Is there an alternative to using this method? That doesn't co...
As I have been testing sites, I have found reCAPTCHAs getting more and more difficult to read. Is it just me or are others having this problem too?
Along with this, I had a user this morning complain about receiving a Bristish Pound character in their reCAPTCHA. Of course the user didn't know what to do, even though I have message stati...
Hi.
I'm trying to verify a Recaptcha using jQuery, but I keep getting an error telling me: Access to restricted URI denied" code: "1012
This is what I've tried so far:
var challengeVal = $("#recaptcha_challenge_field").attr("value");
var reponseVal = $("#recaptcha_response_field").attr("value");
var remoteIp = <%= "'" + Request.Ser...
Hi,
I trying to implement reCAPTCHA in one of my forms,...but i am using ajax as the submission. (More specifically the prototype ajax.updater)
Once I submit and error check my form I try to load the reCAPCHTA widget thingy (in my updated div element) which basically just calls a javascript file like so:
<script type="text/javascript"...
I want to have a Recaptcha on a JQuery Dialog. Though the line
$("#newsletterDialog").dialog({
autoOpen: true,
modal: false,
resizable: false,
draggable: false,
width: 400
})
Will break jquery, so that
validator.Challenge = Context.Request.Form[RECAPTCHA_CHALLENGE_FIELD];
fails (I.e. some operation with a...
This is something of an embarrassing question to ask, seeing as it is mainly about my lack of Javascript knowledge. Seems like it might be "so obvious" that nobody specifies it anymore. Gotta start somewhere! I'm a proficient coder in other languages, I'm just unfamiliar with JS.
On the ReCaptcha Client API docs page, there's an example...
I'm looking for a replacement for JCaptcha, which doesn't seem to be maintained any more, and isn't very good to begin with. The replacement has to integrate nicely with JavaEE webapps.
As I can see it, there are three options:
JCaptcha - No longer maintained, crude API
SimpleCaptcha - much nicer API, nicer captchas, but seems to be J...
I followed the recaptcha instructions and created a simple app that works if I run it in Eclipse using a local Tomcat server but the same files give an error (verify-params-incorrect) when validating the user's response when run in Eclipse using the local Google App Engine SDK.
...
Hey everyone,
I am trying to use reCaptcha on my site, and recaptcha_challenge_field, and recaptcha_response_field are not being added to the $_POST array on the backend - but the rest of the variables from my form are.
Any ideas? I have double checked the public/private keys.
Here is the generated HTML:
<form action='myform.php' na...
I'm fascinated by the CAPTCHA system used on SO... I would like to know more about the "many factors" which make reCAPTCHA work. The developers, understandably given the potential for abuse, keep rather quiet about the exact inner workings of their system... But the behavior is well-documented, and so perhaps my curiosity can still be sa...
Hello,
I'm looking to build a small script that can load reCaptcha images from another website.
Seeing as the reCaptcha widget works using Javascript, is there anyway for one to capture the image generated using CURL?
...
Hi,
It is possible to add multiple reCAPTCHAS in one form? I tried doing so, even giving the multiple reCAPTCHAS different IDs, but when I load the page in the browser, only one of them is shown.
Is this by design? I need the two reCAPTCHAS because one is for Login, and the other one is for the Register form, which will be shown on the...
How can I resize reCaptcha? I can't get it.
Thank you for any help.
...
I'm using the rails recaptcha plugin found here: http://github.com/ambethia/recaptcha/tree/master
I have signed up for an account on recaptcha.com, obtained a public & private key, and the site is configured with a global key (for now).
In config/environment.rb I setup the environment variables:
ENV['RECAPTCHA_PUBLIC_KEY'] = 'xxxxxxxx...
I am trying to install ReCaptcha into the user registration of Joomla 1.5. This may just be an issue with Joomla but when i hit register nothing happens. I think it's doing some JavaScript form validation but there is nothing telling the user what went wrong. if, God forbid, they do fill out the form correctly Joomla will redirect the us...
Do I need to create a database table to implement captcha on a registration form?
...
So, I've implemented ReCaptcha in my ASP.NET MVC application via these instructions:
http://devlicio.us/blogs/derik_whittaker/archive/2008/12/02/using-recaptcha-with-asp-net-mvc.aspx
My question is, after I've created my reference to my dll, where should I place the DLL in my solution? Should I just make a references folder or ... ? ...