使用 Kohana 3.1 帮助程序类设置 cookie 会导致服务器错误:500

发布于 2024-11-18 00:33:45 字数 206 浏览 3 评论 0 原文

我正在尝试使用 Kohana 助手“Cookie” 类。
似乎不起作用,调用时出现 500 错误。

setcookie($name,$value) 可以工作。

可能是什么原因?

I am trying to make use of Kohana helper "Cookie" class.
Doesn't seem to work, gives 500 error on calling.

setcookie($name,$value) works though.

What might be the reason??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

っ左 2024-11-25 00:33:45

我可以看到该函数失败的唯一地方是如果您未能提供 饼干盐。确保您设置了一项,看看这是否可以解决您的错误。在引导程序中:

// Use a long and random value.
Cookie::$salt = ''

The only place where I could see that function failing is if you have failed to provide a cookie salt. Make sure you set one and see if this fixes your error. In the bootstrap:

// Use a long and random value.
Cookie::$salt = ''
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文