微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php – Laravel登录不在边缘和Internet Explorer中工作

使用Laravel 5登录无法使用Edge和Internet Explorer,而在其他浏览器中工作得非常好.

我们怀疑它与没有正确存储的会话有关,但说实话,我们不知道是什么原因导致了这个问题.

当我们使用适当的详细信息登录时,登录逻辑被激活并正确完成,但之后它刚刚重定向登录页面,因此中间件可能认为用户登录并将其返回到登录页面,这就是我们认为与会议有关的原因.

这是我们的登录脚本:

$rules = array('email' => 'required|email|min:3|max:60','password' => 'required|min:6|max:20');

    $attributeNames = array(
       'email' => strtolower(Lang::get('auth.email')),'password' => strtolower(Lang::get('auth.password')),);

    $validator = Validator::make(Input::all(),$rules);
    $validator->setAttributeNames($attributeNames);

    if ($validator->fails()){ return Redirect::back()->withErrors($validator); die(); } 

    //Make an login attempt
    $auth = Auth::attempt(array(
        'email' => Input::get('email'),'password' => Input::get('password'),'role' => 'admin'
    ),false);

    if(!$auth){ 

        $auth2 = Auth::attempt(array(
            'email' => Input::get('email'),'role' => 'user'
        ),false);

        if(!$auth2){ 

            return Redirect::back()->withErrors(Lang::get('auth.errorText'))->withInput(Input::all());
            die();
        }

    }

    //If user is not activated
    if(Auth::User()->activated != 'OK'){

        Auth::logout();
        return Redirect::back()->withErrors(Lang::get('auth.notActivated'));
        die();
    }

    if(Auth::User()->sms_verificatie == '1') {

        $user = Auth::User();
        $user->sms_ok = 0;
        $user->save();

        $sms_codes_verwijderen = UseRSSMSLogin::where('id_cms_users','=',Auth::User()->id)->delete();

        return Redirect::route('sms-verificatie');
        die();

    }

    Session::forget('dashboard_werkgever');

    return Redirect::route('dashboard');
更改cookie名称删除_(下划线)为我工作.

在app / config / session.PHP中更改了

‘cookie’=> ‘laravel_session’

‘cookie’=> ‘laravelsession’

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。