How do I use a table other than “Users” for CakePHP's AuthComponent?

大憨熊 提交于 2019-12-03 03:12:35

In app_controller.php:

function beforeFilter() {
    $this->Auth->userModel = 'Account';
}

Below code was helpful in my case as accepting username in email field, you can also define password hash in options.

$this->Auth->authenticate = array(
    'Basic' => array('userModel' => 'Account'),
    'Form' => array(
       'fields' => array('username' => 'email'),
       'userModel' => 'Account'
       )
 );
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!