CakePHP 2 ReCaptcha Plugin based on CakepPHP 1 tbsmcd's plugin.
Quick start guide
-
Get reCAPTCHA key. http://www.google.com/recaptcha
-
Setting. Download recaptchalib.php. And put it in recaptcha_plugin/vendors. http://code.google.com/p/recaptcha/downloads/list?q=label:phplib-Latest
-
Config. Insert keys in Recaptcha/Config/key.php . $config = array( 'Recaptcha' => array( 'Public' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'Private' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', ), );
-
Bootstrap if you load your plugins one by one add CakePlugin::load('Recaptcha');
ReCaptcha/Config/bootstrap.php only reads your key.php config file
-
Controller. public $components = array('Recaptcha.Recaptcha'); public $helpers = array('Recaptcha.Recaptcha');
or inside controller action
$this->helpers[] = 'Recaptcha.Recaptcha'; $this->Components->load('Recaptcha.Recaptcha')->startup($this);
always add in your controller action or in bootstrap Configure::load('Recaptcha.key');
-
View. Inside
tags: echo $this->Recaptcha->show(array $options); $options : any recaptcha supported option (theme, lang, custom_translations, custom_theme_widget, tabindex) example: echo $this->Recaptcha->show(array( 'theme' => 'light', 'lang' => 'en', ));echo $this->Recaptcha->error();