reCaptcha is a plugin for CakePHP 1.2 to allow the easy use of reCaptcha.net's captcha library.
It may not work under all circumstances, but it is currently used in several production sites.
Usage:
(in the controller)
var $components = array(array('Recaptcha.Captcha', array( 'private_key' => PRIVATE_KEY_FROM_RECAPTCHA_DOT_NET, 'public_key' => PUBLIC_KEY_FROM_RECAPTCHA_DOT_NET))); var $helpers = array('Recaptcha.CaptchaTool');
(in the view)
<?php echo $captchaTool->show(); ?>
Requires:
© 2009 Jason Burgess
reCaptcha plugin is licensed under an MIT style license.