i just created a controller like this:
<?php
class UsuarioController extends AppController {
}
?>
I went to http://urubu.zz.mu/controller/UsuarioController.php to test, and this was the result:
Error: ControllerController could not be found.
Error: Create the class ControllerController below in file: app/Controller/ControllerController.php
}
Theres no class ControllerController in my project. I found a line in AppController(From CakePHP) :
App::uses('Controller', 'Controller');
But i dont know what it means and how to solve it.
Can anyone help? thanks