Welcome Guest, Not a member yet? Register   Sign In
ReCAPTCHA library - ignited
#37

[eluser]mr_coffee[/eluser]
This worked perfect for me (the new one) after making a couple of adjustments, though I see how this would be a special case. The previous comment tipped me off. The form_validation config file was not working as advertised for me, but it's how I have the controller set up:

Code:
function index($recipient) {

== fail. I tried variations on the config file but couldn't make it work (even when I knew the value of $recipient). The following adjustment was sufficient (adding this to the controller):

Code:
$this->form_validation->set_rules('recaptcha_response_field','lang:recaptcha_field_name','required|callback_check_captcha');

As I also like to sort things of this nature into folder - specifically one labeled 'forms' - I was surprised to find that placing the recaptcha.php view in the forms folder failed until I figured out its name and location was set in the recaptcha.php library file... should be line 158:

Code:
return $this->_CI->load->view('forms/recaptcha',$html_data,TRUE);

Ok, back to my controller implementation: I'd decided to create a single controller to deal with e-mail for multiple accounts. Therefore 'email/name' as an address generates the appropriate form. All sorts of goofy things happen in the controller... variables set up for the page view... if there's a phone number they want displayed, etc... it all gets dumped into the form view. The generic example assumes - at least I think it does - that the controller would only ever display the form, and that it's the "only" form. As this was not true in my case, I also had to make this adjustment to the form view:

Code:
<?php echo form_open('contact/'.$contactpage,array('class' => 'emailForm')); ?>

$contactpage is the same as $recipient... but just being the data variable name I passed to the view. 'contact' is the name of the view (contact.php). The way I have CI set up in general... as I have a main controller dealing with everything (:any)... if the address is not found, it goes home. I have to specify the address of the form or you'd never see the errors if there were any. The class is in there just so I could style the placement of the labels and images.

The only suck part is that the final code will fail xhtml validation as there is a script in the body of the page. It might be possible to make an adjustment using the reCaptcha API and having a predetermined div where the table will be written to, but I haven't tried it. The error is kind of worth it to curtail spam, on the other hand.

I've read through the comments here. To the neigh-sayers: the old "captcha" method was not very good. reCaptcha - on the other hand - IS very good. It isn't an "end all" to spam, but it's very effective. I had the old version installed to a forum and still got at least one SPAM sign up per week... and since switching to the reCaptcha verification method: have only had one in a year. I'd wager that user had to manually read the image and sign up with their spam URL in their profile... and if a spammer is willing to go through all THAT trouble... they deserved the ability to sign up even if I did ban their IP after. While the forum isn't advertised or anything... I'd call that a pretty decent reason to use the reCaptcha method: it is quite effective.

My thanks to the author of the library!


Messages In This Thread
ReCAPTCHA library - ignited - by El Forum - 12-17-2007, 04:23 PM
ReCAPTCHA library - ignited - by El Forum - 12-17-2007, 05:00 PM
ReCAPTCHA library - ignited - by El Forum - 12-17-2007, 05:27 PM
ReCAPTCHA library - ignited - by El Forum - 12-17-2007, 06:06 PM
ReCAPTCHA library - ignited - by El Forum - 12-17-2007, 06:33 PM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 02:36 AM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 05:17 AM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 07:37 AM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 08:05 AM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 08:46 AM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 11:01 AM
ReCAPTCHA library - ignited - by El Forum - 12-18-2007, 05:59 PM
ReCAPTCHA library - ignited - by El Forum - 12-19-2007, 03:25 AM
ReCAPTCHA library - ignited - by El Forum - 12-25-2007, 09:47 PM
ReCAPTCHA library - ignited - by El Forum - 01-07-2008, 04:03 AM
ReCAPTCHA library - ignited - by El Forum - 01-08-2008, 09:53 PM
ReCAPTCHA library - ignited - by El Forum - 01-17-2008, 10:03 PM
ReCAPTCHA library - ignited - by El Forum - 01-19-2008, 10:33 PM
ReCAPTCHA library - ignited - by El Forum - 01-20-2008, 03:22 AM
ReCAPTCHA library - ignited - by El Forum - 01-20-2008, 09:49 AM
ReCAPTCHA library - ignited - by El Forum - 01-20-2008, 03:54 PM
ReCAPTCHA library - ignited - by El Forum - 02-29-2008, 06:05 PM
ReCAPTCHA library - ignited - by El Forum - 03-29-2008, 03:24 PM
ReCAPTCHA library - ignited - by El Forum - 03-29-2008, 06:18 PM
ReCAPTCHA library - ignited - by El Forum - 03-29-2008, 11:23 PM
ReCAPTCHA library - ignited - by El Forum - 02-24-2009, 08:10 PM
ReCAPTCHA library - ignited - by El Forum - 02-24-2009, 08:12 PM
ReCAPTCHA library - ignited - by El Forum - 02-24-2009, 08:21 PM
ReCAPTCHA library - ignited - by El Forum - 02-24-2009, 08:35 PM
ReCAPTCHA library - ignited - by El Forum - 02-24-2009, 08:40 PM
ReCAPTCHA library - ignited - by El Forum - 03-01-2009, 12:35 AM
ReCAPTCHA library - ignited - by El Forum - 04-07-2009, 04:07 PM
ReCAPTCHA library - ignited - by El Forum - 04-17-2009, 01:49 PM
ReCAPTCHA library - ignited - by El Forum - 04-18-2009, 07:40 AM
ReCAPTCHA library - ignited - by El Forum - 06-15-2009, 12:26 PM
ReCAPTCHA library - ignited - by El Forum - 06-15-2009, 12:31 PM
ReCAPTCHA library - ignited - by El Forum - 08-06-2009, 09:01 PM
ReCAPTCHA library - ignited - by El Forum - 09-29-2009, 02:47 PM
ReCAPTCHA library - ignited - by El Forum - 09-29-2009, 02:53 PM
ReCAPTCHA library - ignited - by El Forum - 02-06-2010, 06:17 PM
ReCAPTCHA library - ignited - by El Forum - 03-10-2010, 04:41 PM
ReCAPTCHA library - ignited - by El Forum - 04-16-2010, 02:29 PM
ReCAPTCHA library - ignited - by El Forum - 04-18-2010, 06:26 AM
ReCAPTCHA library - ignited - by El Forum - 04-28-2010, 08:03 AM
ReCAPTCHA library - ignited - by El Forum - 05-03-2010, 01:42 PM
ReCAPTCHA library - ignited - by El Forum - 05-03-2010, 02:21 PM
ReCAPTCHA library - ignited - by El Forum - 05-03-2010, 02:39 PM
ReCAPTCHA library - ignited - by El Forum - 05-04-2010, 10:59 AM
ReCAPTCHA library - ignited - by El Forum - 06-29-2010, 01:48 AM
ReCAPTCHA library - ignited - by El Forum - 07-04-2010, 01:30 PM
ReCAPTCHA library - ignited - by El Forum - 07-11-2010, 02:28 PM
ReCAPTCHA library - ignited - by El Forum - 07-25-2010, 01:17 AM
ReCAPTCHA library - ignited - by El Forum - 08-30-2010, 03:19 PM
ReCAPTCHA library - ignited - by El Forum - 09-08-2010, 01:59 AM
ReCAPTCHA library - ignited - by El Forum - 09-08-2010, 02:10 AM
ReCAPTCHA library - ignited - by El Forum - 09-08-2010, 02:19 AM
ReCAPTCHA library - ignited - by El Forum - 09-08-2010, 02:28 AM
ReCAPTCHA library - ignited - by El Forum - 09-08-2010, 02:34 AM
ReCAPTCHA library - ignited - by El Forum - 09-15-2010, 04:10 AM
ReCAPTCHA library - ignited - by El Forum - 09-23-2010, 08:12 AM
ReCAPTCHA library - ignited - by El Forum - 09-23-2010, 08:50 PM
ReCAPTCHA library - ignited - by El Forum - 09-24-2010, 01:56 AM
ReCAPTCHA library - ignited - by El Forum - 09-24-2010, 04:42 AM
ReCAPTCHA library - ignited - by El Forum - 09-24-2010, 06:27 AM
ReCAPTCHA library - ignited - by El Forum - 12-02-2010, 06:18 PM
ReCAPTCHA library - ignited - by El Forum - 12-02-2010, 07:04 PM
ReCAPTCHA library - ignited - by El Forum - 12-03-2010, 08:51 AM
ReCAPTCHA library - ignited - by El Forum - 01-30-2011, 01:58 PM
ReCAPTCHA library - ignited - by El Forum - 01-31-2011, 09:08 AM
ReCAPTCHA library - ignited - by El Forum - 02-02-2011, 05:28 AM
ReCAPTCHA library - ignited - by El Forum - 02-02-2011, 06:43 AM
ReCAPTCHA library - ignited - by El Forum - 02-18-2011, 04:34 PM
ReCAPTCHA library - ignited - by El Forum - 02-24-2011, 04:53 PM
ReCAPTCHA library - ignited - by El Forum - 02-28-2011, 02:50 PM
ReCAPTCHA library - ignited - by El Forum - 03-03-2011, 07:37 AM
ReCAPTCHA library - ignited - by El Forum - 03-04-2011, 12:39 AM
ReCAPTCHA library - ignited - by El Forum - 03-04-2011, 03:52 AM
ReCAPTCHA library - ignited - by El Forum - 03-04-2011, 04:51 AM
ReCAPTCHA library - ignited - by El Forum - 03-04-2011, 01:04 PM
ReCAPTCHA library - ignited - by El Forum - 03-11-2011, 11:49 AM
ReCAPTCHA library - ignited - by El Forum - 03-11-2011, 10:01 PM
ReCAPTCHA library - ignited - by El Forum - 03-18-2011, 08:54 PM
ReCAPTCHA library - ignited - by El Forum - 03-18-2011, 09:55 PM
ReCAPTCHA library - ignited - by El Forum - 04-06-2011, 01:32 AM
ReCAPTCHA library - ignited - by El Forum - 04-08-2011, 08:20 PM
ReCAPTCHA library - ignited - by El Forum - 04-10-2011, 02:56 PM
ReCAPTCHA library - ignited - by El Forum - 04-10-2011, 08:22 PM
ReCAPTCHA library - ignited - by El Forum - 04-11-2011, 02:02 AM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 10:42 AM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 11:46 AM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 12:14 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 12:41 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 12:54 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 01:06 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 01:09 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 01:16 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 01:18 PM
ReCAPTCHA library - ignited - by El Forum - 04-21-2011, 04:55 PM
ReCAPTCHA library - ignited - by El Forum - 04-22-2011, 07:57 AM
ReCAPTCHA library - ignited - by El Forum - 04-22-2011, 04:39 PM
ReCAPTCHA library - ignited - by El Forum - 04-22-2011, 05:28 PM
ReCAPTCHA library - ignited - by El Forum - 04-25-2011, 10:35 AM
ReCAPTCHA library - ignited - by El Forum - 05-02-2011, 10:03 PM
ReCAPTCHA library - ignited - by El Forum - 05-07-2011, 06:11 AM
ReCAPTCHA library - ignited - by El Forum - 05-16-2011, 01:48 PM
ReCAPTCHA library - ignited - by El Forum - 06-08-2011, 05:55 AM
ReCAPTCHA library - ignited - by El Forum - 02-15-2012, 02:05 PM



Theme © iAndrew 2016 - Forum software by © MyBB