$this->Auth->identify()が必ずfalseで返ってきてしまします。
UsersController
1class UsersController extends AppController { 2 public function login() 3 { 4 if($this->request->isPost()){ 5 $user = $this->Auth->identify(); 6 if (!empty($user)) { 7 $this->Auth->setUser($user); 8 return $this->redirect($this->Auth->redirectUrl()); 9 } 10 $this->Flash->error('ユーザー名かパスワードが間違っています。'); 11 } 12 } 13}
login
1<div class="login_users" form> 2<?= $this->Flash->render('auth') ?> 3<?= $this->Form->create() ?> 4 <fieldset> 5 <legend> 6 アカウント名とパスワードを入力してください 7 </legend> 8 <?= $this->Form->control('name') ?> 9 <?= $this->Form->control('password') ?> 10 </fieldset> 11<?= $this->Form->button(__('送信')); ?> 12<?= $this->Form->end() ?> 13</div>
AppController
1public function initialize() 2 { 3 parent::initialize(); 4 5 $this->loadComponent('RequestHandler'); 6 $this->loadComponent('Flash'); 7 8 $this->loadComponent('Auth', [ 9 'authorize' => ['Controller'], 10 'authenticate' => [ 11 'Form' => [ 12 'fields' =>[ 13 'name' => 'name', 14 'password' => 'password' 15 ] 16 ] 17 ], 18 'loginRedirect' => [ 19 'controller' => 'Users', 20 'action' => 'index', 21 ], 22 'logoutRedirect' => [ 23 'controller' => 'Users', 24 'action' => 'index', 25 ], 26 'authError' => 'ログインしてください', 27 ]); 28 } 29} 30
User
1class User extends Entity { 2 /** 3 * パスワードのhashを保存する 4 */ 5 protected function _setPassword($password) 6 { 7 return (new DefaultPasswordHasher)->hash($password); 8 } 9}
sql
1CREATE TABLE users ( 2id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, 3name VARCHAR(50), 4age int(2), 5password VARCHAR(255) 6);
上記テーブルからnameとpasswordで認証を行いたいのですがうまくいきません。
usersテーブルのpasswordには手打ちで"1111"と入力しました。
seederを回してハッシュ化したパスワードを入れてもだめでした。。。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。