我对CakePHP1.3的多数甚至所有辅导方法进行了尝试,看来没有在CakePHP 2.0上做工作。
我可以增加用户,打上密码,但标识特征并不奏效。 在我点击原木时,它只是重新启用。 无错误,无。
请和感谢你阅读我的问题。
This my code public function login() {
if ($this->request->is( post ) )
{
if( $this->Auth->login() )
{
// the redirect() function in the Auth class redirects us
// to the url we set up in the AppController.
return $this->redirect( $this->Auth->redirect());
}
else
{
$this->Session->setFlash(__( Email or password is incorrect ,true));
}
}
}
Thanks, Mahadeva Prasad