I am using Cakephp 2.5 and trying to create a plugin called BankTaxes, for now it shows the error message controller not found.
I do follow the Create plugin tutorial and i can see the contact index view as expected.
At my Plugin i see Controller not found error message:
Error: BankTaxesController could not be found.
Error: Create the class BankTaxesController below in file: app\Controller\BankTaxesController.php.
How can i fix it?
I have the following structure :
//App/Config/Bootstrap.php :
CakePlugin::loadAll();
My Controller:
// In /app/Plugin/BankTaxes/Controller/BankTaxesAppController.php
class BankTaxesAppController extends AppController {
}
My Model
// In /app/Plugin/BankTaxes/Model/BankTaxes.php
App::uses(‘AppModel’, ‘Model’);
class BankTaxesAppModel extends AppModel {
}