I want to use DebugKit, but my problem is the next: I designed a login page for the project. And on my routes.php I defined it as my index page, in this way:
Router::connect('/', array('controller' => 'users', 'action' => 'login'));
I use
public function login() {
$this->layout = false;
}
on my UsersControllers, to don't use the default layout of the entire project. But the DebugKit toolbar is not showing. Also I tryed with
$this->autoRender= false;
but it was worst. The DebugKit is showing in the default page of the project (when it was created with NetBeans) Any ideas to get visible the DebugKit? Or a better way to debug a project in CakePHP?