0

我正在使用 SilverStripe PHP 框架,其中有一些登录面板。我的问题是当我在浏览器中禁用 cookie 时,我无法登录。我可以在登录时转义 cookie 吗?或者有没有其他解决方案?

4

1 回答 1

0

One solution would be not using cookie at all and instead turning the

session.use_only_cookies to "0" 

forcing to append session id to urls. This has a potential drawbacks some one getting the url can hack in to others session. Also any change in the state will be appended to url.

于 2012-06-08T18:52:43.633 回答