After successful installation of cakePHP via Composer no DebugKit toolbar is visible.
This is really weird cause while the installation process the following has shown:
- Installing cakephp/debug_kit (3.1.0)
Loading from cache
config/bootstrap.php:
// Only try to load DebugKit in development mode
// Debug Kit should not be installed on a production system
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,
Normally (manual installation), the plugin is stored in plugins-folder but it is empty.
Is there anything else I have to configure?
Kind regards,
Phil