0

tried creating small DB and to bake it. but getting an error.

c:\xampp\htdocs\cakeBlog>bin\cake bake Exception: Plugin DebugKit could not be found.

In

[C:\xampp\htdocs\cakeBlog\vendor\cakephp\cakephp\src\Core\PluginCollection.php, line 140]

HP371
  • 860
  • 11
  • 24
Sanka
  • 13
  • 2

1 Answers1

0

Use the following code in the following directory

config/bootstrap.php

if (Configure::read('debug')) {
    Configure::write('DebugKit', ['forceEnable' => true]);
    Plugin::load('DebugKit', ['bootstrap' => true]);
}
Sehdev
  • 5,486
  • 3
  • 11
  • 34