recaptcha

Possible - cancel user control rendering if not loaded in x seconds?

This is probably a lark, but for the recaptcha control as it sometimes takes a long time to render, is this possible? If it takes more than say 5 seconds to render, I'd like to stop the rendering of the object and display my own captcha. I'd start a timer on page load and if 5 seconds has elapsed, in some event in the recaptcha con...

How would one integrate ReCaptcha in to BlogEngine.net (ASP.net C#)?

I am trying to figure out how to best integrate the ReCaptcha API with BlogEngine.net. If there is anyone that has done this -- how did you do it? Thanks, Chris ...

How do I show multiple recaptchas on a single page?

I have 2 forms on a single page. One of the forms has a recaptcha displaying all the time. The other should display a recaptcha only after a certain event such as maxing out login attempts. So there are times when I would need 2 recaptchas to appear on the same page. Is this possible? I know I could probably use a single one for bot...

Using reCaptcha with BlogEngine.net

I have just installed reCaptcha on my site and put the control on my comment post, so far so good. Now to validate reCaptcha it says just do Page.IsValid. However BlogEngine uses Ajax and some JS to post its addComment function and if I test that there I just get error on page in the status bar. Here is the bloengine post function - ...

Need help with reCAPTCHA - keep getting incorrect-captcha-sol

Hi I am trying to add a reCAPTCHA to my site, but keep getting incorrect-captcha-sol error when I submit the answer. Can anyone tell me if I am correct in doing the following? I have a generic index.php, which includes contact.php. In contact.php I have inserted the following code: require_once('recaptchalib.php'); $publickey = "XXXX...

xhtml transitional vs strict?

iframes are not supported in xhtml strict. However, in my application I am using php recaptcha which requires the use of iframes. What are the downsides of just switching to xhtml transitional (if any)? ...

Recaptcha image not showing on IIS

Hello Guys, I deployed my MVC application in our IIS server. When I go to registration page the recaptcha image is not showing. However, When I run it on Visual Studio its working properly. I'm using IIS 6. Do you guys have any idea regarding this issue? Best regards, ...

Problems consuming WebService in .Net (ReCaptcha)

I am having difficulty in consuming the reCaptcha Web Service using C#/.Net 3.5. Although I think the problem is with consuming web services in general. String validate = String.Format("http://api-verify.recaptcha.net/verify?privatekey={0}&remoteip={1}&challenge={2}&response={3}", PrivateKey, UserIP, Challenge, Response); W...

How to use Python plugin reCaptcha client for validation?

Hi all, I want to make a captcha validation. I get the key from the recaptcha website and already succeed to put the public key to load the webpage with the challenge. <script type="text/javascript" src="http://api.recaptcha.net/challenge?k=&lt;your_public_key&gt;"&gt; </script> <noscript> <iframe src="http://api.recaptcha.net/...

django forms wizard and recaptcha

I did a recaptcha integration using the following django snippet settings.py RECAPTCHA_PUBLIC_KEY = '<your public key>' RECAPTCHA_PRIVATE_KEY = '<your private key>' #widgets.py from django import forms from django.utils.safestring import mark_safe from django.conf import settings from recaptcha import captcha...

authlogic openid + recaptcha + confirmed?

Hi all. Could you show me live code examples of integration authlogic-openid and recaptcha? I want to prevent users from registering using they own openid-servers to create multiple accounts and use it for spam. Also could you help me plz to understand - how to check confirmed? field on creation UserSession for openid registered users?...

ReCaptcha or Other Captcha on html form

I'm trying to add captcha control to a form which is rendered using xml parser. (XML Parser gets all values from database and creates a include file with form which is appended at bottom of required page) This form makes a http post to a different page when submit button is clicked and then that page validates data and submits data to da...

recaptcha The remote name could not be resolved: 'api-verify.recaptcha.net'

I am using the ASP.net recaptcha control with .net 2.0 and c#. I have copied the example packaged with the .net demo. Intermitently, when submitting the recaptcha I am getting the error "The remote name could not be resolved: 'api-verify.recaptcha.net'". Othertimes, everything works happily. I have been assured that our firewall i...

Problem with recaptchacontrol inside updatepanel

I have a recaptchavalidator, which is inside an updatepanel: <asp:updatepanel runat=server id=updatepanel1> <cc1:recaptchacontrol runat=server publickey=.. privatekey=.. id=recaptchavalidator1/> <asp:button runat=server id=button1/> </updatepanel> I am sure that some of you can guess what happens. For those of you who hav...

Why does ReCaptcha widget not work within a dojo Dialog in IE?

I have a problem that when i have a recaptcha javascript widget added to a dojo Dialog, it just does not render. Im suspecting its because the dom has already loaded and IE is too stupid to realise it needs to render the recaptcha widget. It works fine in firefox and Chrome. If i insert the recaptcha widget directly on the template page ...

flash with recaptcha or any other captcha solution

Hello there, I have been looking over the internet for a while about this, but it doesn't seem like there is any information available specifically related to captcah and flash. My purpose is to create an image up-loader on flash, and implement "recaptcha" on it, so the upload is controlled. I know that some people will say, "well you...

jQuery form validation problem.

I'm using the following code (via 'Dark Side of the Carton') to validate a reCAPTCHA field, before submitting the rest of a form that includes the captcha field. The validation works fine, the 'recaptchavalidate' page is called, returns True or False correctly and the JavaScript picks this all up (I test this via alert(html);). However...

Recaptcha - Form Customization

Does anyone know if recaptcha can be fully customize without the default frame. I need the recaptcha image to only be a certain width as well as the input field. Has anyone done this before with success. ...

rails recaptcha on localhost? windows causing issues?

I just checked out this answer: http://stackoverflow.com/questions/1076600/rails-recaptcha-plugin-always-returns-false but it didn't seem to help. I'm trying to run recaptcha on rails on my local machine. The site says the API keys should work for prod and local. I've checked the keys many times and have even tried "workarounds" where y...

Zend framework and ReCaptcha

I need to insert ReCaptcha in a form in my ZF application. I'm trying to follow the official documentation, but the ReCaptcha service return me always the error 'incorrect-captcha-sol'. The code I'm using: (In the form) // configure the captcha service $privateKey = 'XXXXXXXXXXXXXXXXXXX'; $publicKey = 'YYYYYYYYYYYYYYYYY...