Reputation: 37
I am new in cakephp. I am getting the following error in my page.
Error: Class 'cakeplugin' not found
File: C:\wamp\www\cakephp\app\Config\bootstrap.php
Line: 27
Notice: If you want to customize this error message, create app\View\Errors\fatal_error.ctp
Upvotes: 1
Views: 2082
Reputation: 430
To load all plugins that you have added, put this in your config/bootstrap.php, :
CakePlugin::loadAll();
Upvotes: 2