dev-master
9999999-dev https://github.com/inimist/cakephp3-captchaCakePHP Captcha Plugin, Image, Match and Google Recaptcha Support
MIT
The Requires
- php >=5.6
- cakephp/cakephp ^3.5.0
by Arvind Kumar
plugin cakephp security captcha recaptcha
CakePHP Captcha Plugin, Image, Match and Google Recaptcha Support
Bot Detect using Image captcha, Math captcha and Google-recaptcha for CakePHP 3, (*1)
This CakePHP Captcha plugin requires CakePHP 3.6+., (*2)
composer require inimist/cakephp-captcha
, (*3)
and, (*4)
bin/cake plugin load Captcha -b -r
, (*5)
Load Captcha plugin., (*6)
If you ran bin/cake plugin load Captcha -b -r
above skip this step., (*7)
Place Plugin::load('Captcha');
in your application's Application.php or bootstrap.php file., (*8)
Load Capthca component, (*9)
Place $this->loadComponent('Captcha.Captcha');
in your controllerr's initialize function, (*10)
OR, (*11)
Load Captcha component on the fly, in the particular controller action function. For example in the signup() action:, (*12)
$this->loadComponent('Captcha.Captcha'); //or load on the fly!
$, (*13)
Add Behavior to your Model/Table, (*14)
Place $this->addBehavior('Captcha.Captcha', ['field'=>'<fieldname>'])
in your Model (Table class)
Note: If you use Google Recaptcha add "secret" option with its value which you get from Google. Also, add Google site key in the view file., (*15)
Create an input field in your view's form as:, (*16)
echo $this->Captcha->create('<fieldname>', $options);
, (*17)
In your controller in which your form data is processed, place (required with image and math catpcha):, (*18)
$this->Users->setCaptcha('<fieldname>', $this->Captcha->getCode('<fieldname>'));
, (*19)
just before patching entity. For example:, (*20)
$this->Users->setCaptcha('securitycode', $this->Captcha->getCode('securitycode')); $user = $this->Users->patchEntity($user, $this->request->data);
A fully working demo can be found here. You can install a fully working demo as a plugin from here., (*21)
The best place for settings is your_apps/config/app.php file. Create a new key named "Captcha" and specify settings there., (*22)
'Captcha' => [ 'type' => 'recaptcha', 'sitekey' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', 'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', //'clabel' => 'Enter code', //'reload_txt' => 'Reload??' ]
$options['width']=150; $options['height']=50; $options['theme']='default'; echo $this->Captcha->create('captcha_input_field_name', $options);
//form 1 $options1['width']=150; $options1['height']=50; echo $this->Captcha->create('captcha_input_field_name1', $options1); //form 2, A math captcha, anywhere on the page $options2['type']='math'; echo $this->Captcha->create('captcha_input_field_name2', $custom2);
Options for view template. Ex: $this->Captcha->create('field_name', $options)
:, (*23)
(All above options can also be set from controller. Ex: $this->loadComponent('Captcha.Captcha', $options)
), (*24)
**Options for model. Ex: $this->addBehavior('Captcha.Captcha', $options);, (*25)
Headers already sent issue. The component uses php's header()
function to send or generate captcha image as raw HTML output. Make sure there is no output generated before the create() function in your component. It is common error to have spaces, tags or empty space in your files which would cause rending no image in the captcha., (*26)
GD library and True Type Font (TTF) support extensions are enabled in PHP., (*27)
This captcha script uses three random font faces, anonymous, droidsans and ubuntu to generate fonts in the captcha images. These font faces are placed in the captcha/src/Lib/Fonts of this download. I have seen that, sometimes, these font files get corrupted during downloads. If you see font not found error in your error logs and captcha are failed to generate, try downloading these font faces from their respective sources and replace them in the mentioned folder. You can also use different font families by placing them Fonts folder and referencing them in the CaptchaComponent.php component file., (*28)
CakePHP Captcha Plugin, Image, Match and Google Recaptcha Support
MIT
plugin cakephp security captcha recaptcha