First, Install 'DebugMemo' by recipe.php , and set CakePlugin::load('DebugMemo');
Second, Create schema.
./lib/Cake/Console/cake schema create debug_memos --plugin DebugMemo
Finally, add the following code in AppController.php
<?php
class AppController extends Controller {
public $components = array('DebugMemo.Memobar');
}
Click bottom bar (when debug = 2).
And save memo.
the MIT License

