Edge session.cookie_lifetime

别来无恙 提交于 2019-12-20 06:28:18

问题


My website functionality is broken on Edge (Especially login) and I was told it has something to do with the session.cookie_lifetime. I would appreciate any help regarding the matter. Please note, I'm not a developer and I do not have any code knowledge.

Some of my php.ini file, if it helps:

session.use_cookies = 1
session.cookie_lifetime = 1440
session.gc_maxlifetime = 1440
session.cookie_path = 1
session.save_path = "/tmp"
session.auto_start = 1

回答1:


session.cookie_lifetime This value (default 0, which means until the browser's next restart) defines how long (in seconds) a session cookie will live. This value indirectly defines the "absolute" maximum lifetime of a session, whether the user is active or not. If this value is set to 60, every session ends after an hour.



来源:https://stackoverflow.com/questions/50481014/edge-session-cookie-lifetime

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!