DebugKit Installation

Installing DebugKit after finished Blog tutorial.
You will be able to download from here for CakePHP 2.x (but they say "CakePHP 2.2.0 or greater")

Debugkit for CakePHP 2.x

Installation step

  1. Unzip and make sure the name of folder "DebugKit", then put in app/plugins like
    app/Plugins/DebugKit
  2. Add this in app/Config/bootstrap.php to load plugin
    [php]CakePlugin::load('DebugKit');[/php]
  3. Include component in app/Controller/AppController.php
    [php]var $components = array(‘DebugKit.Toolbar’);[/php]

Confirm PHP version

In case you encounter the following message, you need to check if PHP version is 5.3.0 or later.
Parse error: syntax error, unexpected T_FUNCTION in ~app/Plugin/DebugKit/Controller/Component/ToolbarComponent.php on line 174

Debugkit for CakePHP 1.3

Download

1.3 Branch (FYI For 1.2)

Installation

  1. Unzip and make sure the name of folder “debug_kit”, then put in app/plugins like
    app/plugins/debug_kit

    In case you see the following message, you need to check if all letters written in lower case like 'debug_kit'.
    Error: The component file was not found.
    Error: Create the class ToolbarComponent in file: app/controllers/components/toolbar.php
  2. add as a component in app/app_controller.php
    [php]var $components = array('DebugKit.Toolbar');[/php]
  • このエントリーをはてなブックマークに追加

関連記事

(日本語) CakePHP インストール時エラーの対処

Sorry, this entry is only available in 日本語.

(日本語) 数値系バリデーション

Sorry, this entry is only available in 日本語.

(日本語) バリデーション前後に処理を追加できる「beforeValidate」「afterValidate」

Sorry, this entry is only available in 日本語.

no image

(日本語) HttpSocketを使用してリクエスト送信

Sorry, this entry is only available in 日本語.

(日本語) Markdown Plugin

Sorry, this entry is only available in 日本語.

(日本語) FullCalendarを使用してカレンダーアプリケーション

Sorry, this entry is only available in 日本語.

(日本語) 入力文字列の長さ(文字数)をバリデーション

Sorry, this entry is only available in 日本語.

(日本語) Jsヘルパーを使用してAjax更新

Sorry, this entry is only available in 日本語.

(日本語) CakePHP 2.x インストール

Sorry, this entry is only available in 日本語.

no image

(日本語) radioボタンを実装

Sorry, this entry is only available in 日本語.

Comment

Leave a Reply to CakePHP立ち上げエラー[The application is trying to load a file from the DebugKit pluginとMake sure your plugin DebugKit is in the app/Plugin directory and was loaded] | System.NormalBlog.net Cancel reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.

    PAGE TOP ↑