在验证后,Laravel / Sentry不会在会话或cookie上保存数据

时间:2014-09-07 22:08:09

标签: php session laravel-4 cartalyst-sentry

我刚刚将我的代码从localhost上传到共享主机,localhost中的一切都很好,但我在身份验证后无法在共享主机上使用用户数据...它是空的。

这是我的登录代码:

    try{$credentials = array('email' => Input::get('email'), 'password' => Input::get('password'));

        if(Sentry::authenticate($credentials, Input::get('remember'))){

            return Redirect::route('manager.index');

        }

    } catch ...

然后在重定向到下一页后,我的输出为空!!

public function index()
{

    $user = Sentry::getUser();
    dd($user);
    return View::make('manager.backend.index')->with('user', $user)->with('title', 'Dashboard');
}

我的会话驱动程序是数据库,在localhost中工作正常。

0 个答案:

没有答案