Skip to content

crisu83/yii-debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yii-debug

Debugging tools for the Yii PHP framework.

Configuration

Add the debug command to your console config file (usually protected/config/console.php):

// console application configuration
return array(
    .....
    'commandMap' => array(
        'debug' => array(
            'class' => 'path.alias.to.DebugCommand',
            'runtimePath' => 'application.runtime', // the path to the application runtime folder
        ),
    ),
);

console.php

Update your entry script (usually index.php) to use the Debugger:

$debugger = __DIR__ . '/path/to/Debugger.php';
$yii = __DIR__ . '/path/to/yii.php';

require_once($debugger);

Debugger::init(__DIR__ . '/protected/runtime/debug');

require_once($yii);

index.php

Usage

To enable debugging with the following command:

yiic debug on

You can also enable debugging for a specific ip address (replace {ip-address} with the desired ip address):

yiic debug on {ip-address}

To turn of debugging mode, simply run the following command:

yiic debug off

About

Debugging tools for the Yii PHP framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages