如何在kohana中配置'cookie :: $ salt'

时间:2013-05-05 03:27:51

标签: cookies kohana salt

在Kohana文档的这一部分:( http://kohanaframework.org/3.1/guide/kohana/cookies)它说我能找到

Cookie::$salt = 'foobar';

在bootstrap.php中。

我在那里看不到它。我只是很厚,还是有更好的方法?

2 个答案:

答案 0 :(得分:2)

默认情况下不在bootstrap.php file。我在Kohana::modules之后和路线之前将它添加到文件中。

答案 1 :(得分:0)

在最新版本3.3.4(撰写本文时)中看起来配置已更新

134 /**
135  * Cookie Salt
136  * @see  http://kohanaframework.org/3.3/guide/kohana/cookies
137  * 
138  * If you have not defined a cookie salt in your Cookie class then
139  * uncomment the line below and define a preferrably long salt.
140  */
141 // Cookie::$salt = NULL;
142 Cookie::$salt = 'LOASWnL7A1WKQMk1JALCP1H5BMelyIPQNVdXiGsbEEVhVtyApGsFC6LyINUsDHl1';