KO3 Auth 模块 - 子域
我使用身份验证模块,但它仅适用于我登录的子域。例如,我的登录页面位于www.domain.tld ,并且登录后始终存在登录用户。但在 subdomain.domain.tld 上,没有。我将 Kohana_Cookie 中的属性域更改为 .domain.tld,但没有效果。
您能帮我吗?
I use Auth module, but it works only for a subdomain, where I am logging in.. For example, my login page is on www.domain.tld, and after login, there is always logged user. But on subdomain.domain.tld, there is not. I changed property domain in Kohana_Cookie to .domain.tld, but without effect..
Could you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
ini_set('session.cookie_domain', '.domain.tld');
添加到bootstrap.php
。Try adding
ini_set('session.cookie_domain', '.domain.tld');
tobootstrap.php
.