在 Kohana 文档的这一部分:(http://kohanaframework.org/3.1/guide/kohana/cookies)它说我可以找到
Cookie::$salt = 'foobar';
在 bootstrap.php 中。
我在那里看不到。我只是厚,还是有更好的方法?
在 Kohana 文档的这一部分:(http://kohanaframework.org/3.1/guide/kohana/cookies)它说我可以找到
Cookie::$salt = 'foobar';
在 bootstrap.php 中。
我在那里看不到。我只是厚,还是有更好的方法?
默认情况下,它不在bootstrap.php 文件中。Kohana::modules
我已在路线之后和之前将其添加到文件中。
看起来配置在最新版本 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';