I am learning the KohanaPhp 3 framework and I have a problem adding a module called kolanos-Kohana-captcha.
What i have done so far:
- I copied the kolanos-kohana-captcha directory to the modules directory
- Copied kolanos-kohana-captcha / config / captcha.php to application / config / captcha.php
- Edited the file and added Bootstrap.php
Kohana :: modules (array (... 'captcha' => MODPATH. "Kolanos-kohana-captcha ',));
But this will not work: (Whenever I want to use the Captcha class, kohana shows a "class not found" error.
Am I doing something wrong? Is this a problem with the module? Are there any other modules for captcha processing in Kohana 3+?
source share