You will need
'userModel' => 'AppUser',at your settings for Auth Component Section in AppController.php.
whole block would be:
public $components = array(
'Session',
'Flash',
'Acl',
'Auth' => array(
'loginAction' => array(
'controller' => 'app_users',
'action' => 'login',
'plugin' => false
),
'loginRedirect' => array(
'controller' => 'posts',
'action' => 'index'
),
'logoutRedirect' => array(
'controller' => 'pages',
'action' => 'display',
'home'
),
'flash' => array(
'element' => 'alert',
'key' => 'auth',
'params' => array(
'plugin' => 'BoostCake',
'class' => 'alert-error'
)
),
'authorize' => array(
'Actions' => array(
'actionPath' => 'controllers',
'userModel' => 'AppUser',
),
),
//'authError' => 'Did you really think you are allowed to see that?',
'authenticate' => array(
'Form' => array(
'passwordHasher' => 'Blowfish',
'userModel' => 'AppUser',
'fields' => array(
'username' => 'username', //Default is 'username' in the userModel
'password' => 'password' //Default is 'password' in the userModel
),
),
),
),
'DebugKit.Toolbar'
);