ユーザーのパスワードを更新しようとしていますが、保存できません
これはコントローラーコードです:
public function actionChangepassword($id) {
$model = new UserPass();
$user = $this->findModel($id);
if ($model->load(Yii::$app->request->post())) {
if ($model->validate()) {
try {
$user->setPassword($_POST['UserPass']['newpass']);
if (!$user->save()) {
Yii::$app->getSession()->setFlash('success', 'Password changed to ');
return $this->redirect(['indexi/'.$user->password]);
} else {
Yii::$app->getSession()->setFlash('error', 'Password not changed');
return $this->redirect(['index']);
}
} catch (Exception $e) {
Yii::$app->getSession()->setFlash('error', "{$e->getMessage()}");
return $this->render('changepassword', [
'model' => $model
]);
}
} else {
return $this->render('changepassword', [
'model' => $model
]);
}
} else {
return $this->render('changepassword', [
'model' => $model
]);
}
}
値があることを確認するvar_dump($_POST['UserPass']['newpass'])
と;
パーツを変えてみると$user->setPassword($_POST['UserPass']['newpass']);
$modeluser->password = $_POST['UserPass']['newpass'];
パスワードは保存されますが、ハッシュ化されません。
何が間違っている可能性があります
これがsetpassword
機能です
public function setPassword($password)
{
$this->password = Yii::$app->security->generatePasswordHash($password);
}