kulu
kulu

Reputation: 37

cakeplugin not found in cakephp

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

Answers (1)

Disorder
Disorder

Reputation: 430

To load all plugins that you have added, put this in your config/bootstrap.php, :

CakePlugin::loadAll();

Upvotes: 2

Related Questions