Known IE 8 PHP Session issue?

后端 未结 1 575
臣服心动
臣服心动 2021-01-16 13:19

I have a login system that is being authenticated via a php session. My client is saying that login is failing now that I have moved the site to a new server. But only when

相关标签:
1条回答
  • 2021-01-16 13:39

    Yes, IE8 has this problem with session cookies, especially when redirects are used. Try putting session_set_cookie_params(0); prior to starting the session - this would ensure that the session cookie will not expire until the browser is closed.

    0 讨论(0)
提交回复
热议问题