After successfully installing cakePHP through Composer, the DebugKit toolbar does not appear.
This is a really strange reason, while the installation process showed the following:
- Installing cakephp/debug_kit (3.1.0)
Loading from cache
config / bootstrap.php:
if (Configure::read('debug')) {
Plugin::load('DebugKit', ['bootstrap' => true]);
}
config / app.php:
/**
* Debug Level:
*
* Production Mode:
* false: No error messages, errors, or warnings shown.
*
* Development Mode:
* true: Errors and warnings shown.
*/
'debug' => true,
Usually (manual installation) the plugin is stored in the plugins folder, but it is empty.
Is there anything else I need to configure?
Yours faithfully,
Phil
source
share