会话未在实时站点中存储值

Session did't store values in live site

我正在使用 laravel 4.2,但在我的实时站点会话中没有存储值。这样 Auth::attemp();工作正常但 Auth::check(); return 始终为假。我已经尝试更改会话文件中的域名。提前致谢

routes.php

Route::controller('/admin', 'adminIndex');

adminIndex.php

function getShow()
{
   if (Auth::check())
    {
        return View::make('dashboard');
    }
    else
    {
        return Redirect::to('admin');
    }
}

function postIndex()
{
    $username = Input::get('username');
    $password = Input::get('password');

    if (Auth::attempt(array('username' => $username, 'password' => $password), true))
    {
        return Redirect::to("admin/show/");
    }
    else
    {
        return Redirect::to('admin')->with('message', 'Invalid User Name / Password.');
    }
}

授权功能无法正常工作。它会批准您的凭证并销毁会话。更新您的 laravel 库并尝试。