無法設法登錄任何人的想法?我仍然得到重定向到登錄頁面用戶登錄laravel 4
Route::post('login', function() {
// get POST data
$email = Input::get('username');
$password = Input::get('password');
if (Auth::attempt(array('email' => $email,'password' => $password)))
{
return Redirect::to('home');
}
else
{
// auth failure! lets go back to the login
return Redirect::to('login')
->with('login_errors', true);
}
});
你有沒有改變的用戶模型?同時告訴我們你的桌子上有什麼。請注意,在查詢之前,您的表中的密碼是否由於Auth散列密碼而散列。 – fl3x7 2013-03-07 18:17:01
@ fl3x7我也處於類似的情況。你能否詳細說明你的附註。這可能是解決問題的方法。謝謝 – 2014-03-09 22:21:41
@JeyKeu有關哈希的更多詳細信息,請參見:http://laravel.com/docs/security#storing-passwords – fl3x7 2014-03-11 12:57:02