FORGEBOX Enterprise 🚀 - Take your ColdFusion (CFML) Development to Modern Times! Learn More...

Recaptcha

v1.0 Plugins
A plugin for rendering and validating a Google Recaptcha.

Have fun!

This plugin is compatible with CF9 as it is written in the new cfscript format, and is written for use in Coldbox. First off, place these in your settings in Coldbox.cfc:

			recaptcha_PublicKey = "YOUR KEY HERE",
			recaptcha_PrivateKey = "YOUR KEY HERE"
			
I initialize the Recaptcha plugin in the controller with:
rc.recaptcha = getPlugin("Recaptcha",true).init();
Then here in the view I simply render it by:
rc.recaptcha.render("clean","English")
Then I validate the code like so:
var rc.recaptcha = getPlugin("Recaptcha",true);
var responseVar = rc.recaptcha.checkAnswer(rc.recaptcha_challenge_field,
					rc.recaptcha_response_field);
if(responseVar[1])
{
	return true;
}
else
{
	return false;
}
			
There are several skins and languages to choose from. Also, it is neccessary to have a Recaptcha key from http://www.google.com/recaptcha. Then place the keys in the Coldbox.cfc settings struct like
recaptcha_PublicKey = "PlaceCodeHere",
recaptcha_PrivateKey = "PlaceCodeHere"
Enjoy!
  •   Jonathan Creamer
  • Published
  • 1.0 is the latest of 1 release(s)
    Published
  • Published on {{ getFullDate("2016-06-10T02:51:44Z") }}

$ box install GoogleRecaptcha

No collaborators yet.
 
  • {{ getFullDate("2011-01-23T15:44:16Z") }}
  • {{ getFullDate("2016-06-10T02:51:44Z") }}
  • 5,723
  • 4,431