出于某种原因,我无法使用正确的用户名/密码组合登录。我使用flash消息来显示登录信息何时不正确。
我尝试创建多个帐户以确保我实际上没有输入错误的登录凭据,但经过大约一个小时的摆弄它仍然无法正常工作。
任何帮助将不胜感激!谢谢!
这是我得到的。
UsersController.php(postCreate) - 创建我的用户帐户的功能(工作正常)
public function postCreate() {
$rules = array(
'username'=>'required|unique:users,username|alpha_dash|min:4',
'password'=>'required|min:8|confirmed',
'password_confirmation'=>'required|min:8',
'email'=>'required|email|unique:users,email'
);
$input = Input::only(
'username',
'password',
'password_confirmation',
'email'
);
$validator = Validator::make($input, $rules);
if($validator->fails())
{
return Redirect::to('register')->withErrors($validator)->withInput();
}
//$confirmation_code = str_random(30);
User::create(array(
'username'=>Input::get('username'),
'password'=>Hash::make(Input::get('password')),
'email'=>Input::get('email')
//'comfirmation_code' => $confirmation_code
));
// Mail::send('email.verify', function($message) {
// $message->to(Input::get('email'), Input::get('username'))
// ->subject('Verify your email address');
// });
// Flash::message('Thanks for signing up! Please check your email.');
return Redirect::to('login')->with('message', 'Thanks for signing up! Please check your email.');
}
UsersController.php(postLogin) - 将我记入帐户的功能
public function postLogin() {
$user = array(
'email'=>Input::get('email'),
'password'=>Input::get('password')
);
if (Auth::attempt($user)){
return Redirect::intended('account')->with('message', 'Welcome back!');
} else {
return Redirect::to('login')
->with('message', 'Your username/password was incorrect')
->withInput();
}
}
routes.php文件
Route::get('login', array('as'=>'login', 'uses'=>'UsersController@getLogin'));
Route::post('login', array('before'=>'csrf', 'uses'=>'UsersController@postLogin'));
login.blade.php - 我的登录页面
@if($errors->has())
<p>The following errors have occured:</p>
<ul id="form-errors">
{{ $errors->first('username', '<li>:message</li>') }}
{{ $errors->first('password', '<li>:message</li>') }}
</ul>
@endif
@if (Session::has('message'))
<p>{{ Session::get('message') }}</p>
@endif
{{ Form::open(array('action'=>'login')) }}
<p>
{{ Form::label('username', 'Username') }}<br />
{{ Form::text('username', Input::old('username')) }}
</p>
<p>
{{ Form::label('password', 'Password') }}<br />
{{ Form::password('password') }}
</p>
<p>
{{ Form::submit('Login') }}
</p>
{{ Form::close() }}
答案 0 :(得分:2)
在你的
中 UsersController.php(postCreate) - :您可以使用哈希 password
'password'=>Hash::make(Input::get('password')),
进行创建
和
UsersController.php(postLogin):您正尝试使用'password'=>Input::get('password')
进行登录所以这应该替换为
<强> 'password'=>Hash::make(Input::get('password'))
强>
对于数据库字段,还需要散列密码64个字符。所以也要检查一下。
答案 1 :(得分:0)
我发现问题与我允许输入数据库密码字段的字符数有关。
我将密码列设置为:$table->string('password', 32);
varchar(32),因为laravel中的哈希密码需要至少64个字符才能正常工作。
将数据库中的密码列更改为varchar(64)修复了此问题。