安装后不会出现CakePHP DebugKit插件工具栏

时间:2014-03-18 22:56:11

标签: cakephp plugins install toolbar

您好,并提前感谢您的帮助!多次尝试安装CakePHP的DebugKit插件失败

尝试的步骤: 1.下载并解压缩debug_kit(https://github.com/cakephp/debug_kit) 2.将文件重命名为" DebugKit"并移动到/ webroot / cakephp / plugins(以便它在plugins文件夹中)。 3.对相应的文件进行以下修改。 (我对这些进行了双重和三重检查)

# Installation

* Clone/Copy the files in this directory into `app/Plugin/DebugKit`
* Ensure the plugin is loaded in `app/Config/bootstrap.php` by calling `CakePlugin::load('DebugKit');`
* Include the toolbar component in your `app/Controller/AppController.php`:
```php
class AppController extends Controller {
         public $components = array('DebugKit.Toolbar');
}
```
* Set `Configure::write('debug', 1);` in `app/Config/core.php`.
* Make sure to remove the 'sql_dump' element from your layout (usually
  `app/View/Layouts/default.ctp` if you want to experience the awesome that is
  the debug kit SQL log.

当我到我的localhost / cakephp时,我看到其他通知,我已经配置了所有其他内容,以便它们显示为绿色。然而,Cakephp甚至没有看到我试图使用DebugKit插件并且没有显示工具栏。

我是CakePHP的新手,并且一直在通过教程来正确设置所有内容。我认为DebugKit对于帮助我理解CakePHP会非常有帮助。我已经完成了几个教程并搜索了互联网,但我无法让它工作。如果您有任何想法,请告诉我们!

注意: CakePHP版本2.4.6 DebugKit 2.2.1(也尝试过新版本) LAMP在Ubuntu 12.04上安装

1 个答案:

答案 0 :(得分:0)

     
  1. 在cakePHP根目录中>插件'文件夹,这是DebugKit应该保留的位置。
  2.  
  3. 然后,您需要通过将其加载到引导程序中来为所有人提供该工具包。在应用中> config> bootstrap.php添加这一行;
  4. CakePlugin::load('DebugKit');