0

这是我的问题:

我有一个表 users 是:

id 用户名 邮箱 密码

另外,一个模型用户,在注册时,一切都很好。

现在,当我想登录时,这是我的观点

@layout('main')

@section('content')


@if(Session::has('login_errors'))

<div class='alert alert-error'>Wrong ID</div>

@endif

{{Form::open('user/login', 'POST', array('class' => 'well inline-form'))}}

{{Form::token()}}


{{Form::text('username', Input::old('username'), array('class' => 'input-large', 'placeholder' => 'email'))}}
{{Form::password('password', array('class' => 'input-large', 'placeholder' => 'Mot de passe'))}}

{{Form::submit('Login', array('class'=>'btn btn-primary'))}}

{{Form::close()}}

@endsection

这是我在控制器中所做的

public function action_login()
{
    if(Auth::check()){return Redirect::to('user');}

    if(Request::method() == 'POST')
    {

        $credentials = array('username' => Input::get('username'), 'password' => Input::get('password'));

        if(Auth::attempt($credentials))
        {
            return Redirect::to('user');
        }

        else
        {

            return Redirect::to('user/login')->with_input()->with('login_errors', true);

        }
    }


    Section::inject('title', 'Login');

    return View::make('user.login');

} 

它应该工作,但它没有。

错误如下:当我单击登录按钮时,我的表单传递给我的控制器并被读取。我知道我的 Input::get('username'), Input::get('password') 是正确的,并且在 db 中注册。

问题是:即使我的电子邮件/密码是正确的,我也无法获得身份验证,并且我收到了错误 ID的消息。我希望我很清楚...

你应该知道的事情:

我没有更改配置中的 Auth.php,所以用户名是电子邮件

我在注册时对密码进行哈希处理:'password' => Hash::make(Input::get('password'))

编辑和解决方案

好的,我想通了!

首先 :

  • 我使用了 Php 5.3.6 和 Hash 至少需要 5.3.7
  • 之后,我意识到在我的数据库中,密码最多为 40 个字符。我觉得我好笨

希望它会帮助某人/线程

4

1 回答 1

0

一方面,Controller::detect() 是一种有缺陷的方法 - 在许多地方都提倡不要走捷径并使用该方法。指定您需要的每条路线 - 它不仅更具可读性,而且更容易理解请求的情况。

如果您没有更改 auth 配置,那么这应该意味着从表单提供的用户名应该是某人的 EMAIL,因为这就是 Auth 将检查的内容。因此,请确保是这种情况。如果您想与用户名匹配,请务必同时设置。

此外,还需要更多信息——你还没有真正开始什么不起作用,只是它不起作用。究竟是什么,不起作用?确保您遵循我上面的观点,但它仍然无法正常工作,我们需要更多信息/代码。Atm,您的错误报告相当有缺陷。

于 2013-03-12T03:55:29.917 回答