recaptcha

recaptcha within modal window (fancybox)

Hi, I am trying to load a form through ajax within fancybox. It works great, everything works fine. I used the recaptcha (rails) plugin and got the captcha on the form. Now when the fancybox loads, its getting redirected to an empty page with only captcha on it. I assume this is some problem with iframe and modal window? Has anyone ...

Can't get reCAPTCHA to work in CodeIgniter

I'm using the CodeIgniter reCAPTCHA library (here, forum here). For some reason, no variables are being passed from the reCAPTCHA library to the view that has the reCAPTCHA field code. Here is my controller (the pertinent parts): $this->load->library('recaptcha'); $this->load->library('form_validation'); $this->lang->load('recaptcha')...

Using reCaptcha, Lightbox, and Drupal's Form API together

I've been wading through the issues of putting a Drupal form in a Lightbox2 lightbox. Perhaps wrongly, I've resorted to doing all the validation in javascript before submitting the form (I couldn't make the normal validation return the form within the lightbox). Anyway, i'm using: $form['#attributes']['onsubmit'] = 'return Drupal.m...

Help dealing with spam logic.

Hi, I have a blog, and i have decided to use Akismet and reCaptcha for spam filtering, the way i am dealing with spam is a) the user should go through the captcha before posting a comment b) Now even if some spam bypass captcha then i would like Akismet to handle it. For akismet to handle the Spam, i thought of creating two different ...

Anybody know about a good CodeIgniter reCaptcha tutorial

Hi everyone, I am using CodeIgniter and reCaptcha, but I'm not sure how to properly use the recaptcha library. In the demo, no matter what I type in I get the success message. So that leads to my question: Does anybody know of a good CodeIgniter reCaptcha library tutorial Thanks, Lemiant ...

How to put ReCaptcha in a popup?

I want to show Recaptcha in a Popup. Like i have a page where the user can submit a note. If someone is submitting a note i want to show a popup where recaptcha control will be there and after validation the note will be submitted. How can i do that? Can someone please help. ...

recaptcha challenge issue

I am trying to configure an application for my client and I am using recaptcha for spam control and I am using ruby on rails (also using this plugin http://github.com/ambethia/recaptcha/). My client wants an easy challenge as he is not able to read, its too hard. Is there any way I can make the challenge easier? ...

Captcha encryption

I have created a captcha image making program with PHP <?php function word($n) { $consonants = "bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ"; $vowels = "aeiou"; $word[1] = $consonants[rand(0, 41)]; $word[2] .= $vowels[rand(0, 4)]; $word[3] .= $consonants[rand(0, 41)]; $word[4] .= $consonants[rand(0, 41)]; ret...

Not rendered recaptcha in rails 3

Use of rails 3 recaptcha. In view _form.html.erb insert <%= recaptcha_tags %> But when viewing the page in the browser receives &lt;script type=&quot;text/javascript&quot; src=&quot;http://api.recaptcha.net/challenge?k=**&amp;amp;error=expression&amp;quot;&amp;gt;&amp;lt;/script&amp;gt; As I understand it is not rendered in the browse...

How to do a post request for my reCaptcha ajax api?

My reCaptcha is now implemented into my signup process using ajax.. Currently no matter what is typed in the captcha text field it never validates. It just keeps giving me new words to type in. I've figured it's because I need to test if the user entered the right captcha answer. I need to send a POST request. I have no idea how to do...

A captcha and forced registration still isn't stopping robot spam

I'm using the phpdug template at http://fantasybookmark.com and there's still spam coming through. What additional steps should I take? Is recaptcha THAT much better than the captcha system in place here? ...

Asp.net control for ReCaptcha not working in Opera

Hi, I use asp.net recaptcha control on my website (.net 3.5). I get it from this site: http://code.google.com/apis/recaptcha/docs/aspnet.html version 1.0.4.0 It works great on IE6, chrome, ff, safari but I don't know why it doesn't work on Opera. When I open this page it's blank. I've prepared just a simple web form which contains onl...

Best recaptcha library for Rails 3

What is the best recaptcha library for Rails 3? I found three projects: ruby recaptcha, rack recaptcha, recaptcha ...

ASP.Net MVC Recaptcha and Strict Doctype

I am using this this Recaptcha approach in my MVC project however it does not validate to Strict 1.0 DOCTYPE. Can anyone help? Thanks ...

How to implement reCaptcha into my signup form?

Hi there, I am kinda new to php and i am trying to figure out how to make recaptcha work on my site. Here is an excerpt from my "signup.php" and i have corresponding signup.html which acts like a template... The head part of it looks like below... <?php require_once('includes/config.php'); require_once('includes/functions/func.global...

Integrating reCAPTCHA with existing PHP script

Hi, I have a php script which uses the following line to submit a form : <form action = "javascript:void(null);" onsubmit = "load_ajax();" name = "myform"> Now, to protect bots from misusing the form I want to implement reCAPTCHA as described here : http://www.darksideofthecarton.com/2008/12/15/validating-recaptcha-with-jquery-and-a...

reCaptcha Not working in PHP

(There is no problem with the code below, it was because i had a custom google.com dns record on my server for testing and reCaptcha uses google servers) I have been trying to implement reCaptcha for ages now, i have tried many of the different tutorials but none of them work for me, what is below is from the guides on their own websi...

how to use google recaptcha in jsf2

how to use google recaptcha in jsf2. I am using richfaces too. Please don't suggest primefaces. ...

Use reCaptcha in WPF App

Hi! I'm looking for solution how to integrate WPF desktop application with reCaptcha! Anyone knows the solution? I'm working on registration module to my application, and need good and simple captcha. Thanks! ...

Recaptcha returning "The reCAPTCHA server is unavailable"

Hi, I'm using ASP.NET and plugging in the google Recaptcha user control successfully, when calling the IsValid method on it, it returns in its recaptcha.ErrorMessage property: "The reCAPTCHA server is unavailable" and recaptcha.IsValid obviously returns false. Does anyone know the reason why this could happen? Is it because I'm working...