Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cldrn/recaptcha-cakephp
reCaptcha implementation for CakePHP 1.3
https://github.com/cldrn/recaptcha-cakephp
Last synced: about 1 month ago
JSON representation
reCaptcha implementation for CakePHP 1.3
- Host: GitHub
- URL: https://github.com/cldrn/recaptcha-cakephp
- Owner: cldrn
- Created: 2011-02-02T06:24:09.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-02T06:26:20.000Z (almost 14 years ago)
- Last Synced: 2023-03-11T00:33:20.962Z (over 1 year ago)
- Language: PHP
- Homepage: https://github.com/cldrn/recaptcha-cakephp
- Size: 92.8 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
____ _ _ __
_ __ ___ / ___|__ _ _ __ | |_ ___| |__ __ _ / _| ___ _ __
| '__/ _ \ | / _` | '_ \| __/ __| '_ \ / _` | | |_ / _ \| '__|
| | | __/ |__| (_| | |_) | || (__| | | | (_| | | _| (_) | |
|_| \___|\____\__,_| .__/ \__\___|_| |_|\__,_| |_| \___/|_|
|_|
____ _ ____ _ _ ____ _ _____
/ ___|__ _| | _____| _ \| | | | _ \ / | |___ /
| | / _` | |/ / _ \ |_) | |_| | |_) | | | |_ \
| |__| (_| | < __/ __/| _ | __/ | |_ ___) |
\____\__,_|_|\_\___|_| |_| |_|_| |_(_)____/
================================================================INSTALLATION:
1.- Copy captcha.php to app/controllers/components/
2.- Copy captcha_tool.php to app/views/helpers
3.- Copy recaptcha/ to app/vendors/
4.- Add the component to your controller.
var $components=array('Email','RequestHandler','Captcha' => array(
'private_key' => "YOUR_PRIVATE_KEY",
'public_key' => "YOUR_PUBLIC_KEY"));4.- Validate from your controller with $this->Captcha->validate()
5.- Add echo $captchaTool->show(); to your views