在 IE 和 Chrome 隐身模式下丢失我的会话范围
Losing my session scope in IE and also in Chrome Incognito mode
在 Chrome 和 Firefox 中一切正常,但如果我使用隐身模式,那么我会失去从一个超链接导航到下一个超链接的会话范围。 Internet Explorer 也不工作。
Application.cfc:
component {
this.name = 'sessionScope'
this.SessionManagement = true
this.sessionTimeout = CreateTimeSpan(0,0,45,0)
}
Index.cfm:
<html>
<body>
<cfdump var="#session#">
</body>
</html>
我每次刷新页面时,cfid 都在变化。
这是 Lucee 安装,但我添加了 ColdFusion 标签以覆盖更广泛的受众。
尝试设置 setClientCookies=true
从评论中推广以获得更好的可见度
Lucee 是否可以像 Adobe 的版本那样选择使用 J2EE 会话?使用它代替标准 cfid/cftoken.
可能会有所帮助
在 Chrome 和 Firefox 中一切正常,但如果我使用隐身模式,那么我会失去从一个超链接导航到下一个超链接的会话范围。 Internet Explorer 也不工作。
Application.cfc:
component {
this.name = 'sessionScope'
this.SessionManagement = true
this.sessionTimeout = CreateTimeSpan(0,0,45,0)
}
Index.cfm:
<html>
<body>
<cfdump var="#session#">
</body>
</html>
我每次刷新页面时,cfid 都在变化。
这是 Lucee 安装,但我添加了 ColdFusion 标签以覆盖更广泛的受众。
尝试设置 setClientCookies=true
从评论中推广以获得更好的可见度
Lucee 是否可以像 Adobe 的版本那样选择使用 J2EE 会话?使用它代替标准 cfid/cftoken.
可能会有所帮助