0
votes

Even following this awesome guide i couldn't get DebugKit to work on a clean cakephp installation. The error said that DebugKit Plugin was not found.

1

1 Answers

0
votes

I just had to explicity tell CakePhp in which folder the plugins are.

Writing the following code in the app/core.php file:

App::build(array( 'Plugin' => array(ROOT . '/app/Plugin') ));