2

如何在cakephp中打印消息以进行身份​​验证

我在 beforeFilter() 中写了这个语句

 $this->Auth->authenticate = array(
                           'all'=>array(
                               'scope'=>array(
                                       'User.is_active'=>1
                                    )),
                               'Form');

但是当我使用正确的密码和电子邮件登录时,它说它们不匹配,谁能告诉我我应该做些什么修改才能让它运行。

4

1 回答 1

0

beforeFileter添加这一行

$this->Auth->authError = "Your Error";

如果您不想显示错误,请写

$this->Auth->authError = false;

继续阅读一些文档

于 2014-08-28T07:38:02.823 回答