0

我的 Laravel cookie 在我的本地主机上工作,但在 Laravel Forge 上却没有。在 Forge 上,我收到一个无法分析的 Nginx502错误网关错误,因为 Forge 不提供对错误日志的访问权限。有人可以帮忙吗?

这是我的代码:

 \Cookie::queue('linkedin_user', $li_user); //commenting out this line allows for the proper redirect on Forge
 return redirect('/signup'); 
4

1 回答 1

1

我无法让 cookie 工作,所以我最终Session改用了。轻松交换,没有麻烦。

\Session::put('linkedin_user', $li_user);
return redirect('/signup');
于 2015-12-27T19:49:34.590 回答