Fatal error: Class 'AppController' not found
问题 We got the error in cakephp 1.3.6. version.No idea why and how, please give your advice or solution. error: Class 'AppController' not found....... in cakephp 1.3.6. Thanks Ajay 回答1: In your controller class , use at the top as 1st statement App::uses('AppController', 'Controller'); Because you are extending AppController , so you first need to import it.Like below. App::uses('AppController', 'Controller'); class CoursesController extends AppController {/*Your code*/ } 回答2: Just in case this