在密码错误的yii登录功能

时间:2012-11-24 05:22:32

标签: login yii

在yii我正在创建登录功能。当用户输入正确的用户名但密码错误时,我想在数据库中为这个正确的用户名进行搜索,并希望将该用户名的id放入loginattemmpt表中并向他显示错误的密码消息。所以可以请有人帮助我。

1 个答案:

答案 0 :(得分:2)

在userIdentity.php中保存表中的数据。

  public function authenticate() {

    $user = User::model()->findByAttributes(array('username' => $this->username));

    if ($user === null) {
        $this->errorCode = self::ERROR_USERNAME_INVALID;
    } 

    elseif($user->password !== crypt($this->password, $salt))
    {    // save $user->id in attempt table here . 
            $this->errorCode = self::ERROR_PASSWORD_INVALID;

    }else{
     //set id 
  }

和来自authenticate函数的文件名为setError。

$this->_identity = new UserIdentity($this->username, $this->password);
        if (!$this->_identity->authenticate())
            if ($this->_identity->errorCode === UserIdentity::ERROR_USERNAME_INVALID) {
                $this->addError('password', 'Incorrect email Id');
            }elseif($this->_identity->errorCode === UserIdentity::ERROR_PASSWORD_INVALID){
                $this->addError('password', 'Incorrect Password');
            }