在Kohana文档的这一部分:( http://kohanaframework.org/3.1/guide/kohana/cookies)它说我能找到
Cookie::$salt = 'foobar';
在bootstrap.php中。
我在那里看不到它。我只是很厚,还是有更好的方法?
答案 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';