0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【2020年7月-8月】 chromeでpage expiredになって困ったちゃんの解決策

Last updated at Posted at 2020-08-14

#突然、ログイン画面などがPage Expiredになって困っちゃった。

原因

Sessionのsame_siteをnoneに指定しているのに、secureの属性をつけていない。(chromeのupdateにより、same_site=noneの場合はsecure属性にしないとクッキー拒否されます)

config/session.phpの設定

'same_site' => "none"

になっているのに.envに

SESSION_SECURE_COOKIE=true

がない場合。

注意

当然ですが、 trueにした場合はhttps経由のアクセスじゃないと、そもそもcookieは有効になりません。
対策としては 自己証明書で https にしてもかまわないのですが、そもそものデフォルト値(same_site="lax")にする事も検討ください。わかりやすいさいと

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?