Kohana会话数据在Chrome和IE浏览器中打开的页面中不会持久存在
同样在Firefox浏览器中工作正常
使用的Kohana版本是2.3
会话配置文件保持
$config['driver'] = 'native';
/**
* Session storage parameter, used by drivers.
*/
$config['storage'] = '';
/**
* Session name.
* It must contain only alphanumeric characters and underscores. At least one letter must be present.
*/
$config['name'] = 'NITWSESSID';
/**
* Session parameters to validate: user_agent, ip_address, expiration.
*/
$config['validate'] = array();
/**
* Enable or disable session encryption.
* Note: this has no effect on the native session driver.
* Note: the cookie driver always encrypts session data. Set to TRUE for stronger encryption.
*/
$config['encryption'] = FALSE;
/**
* Session lifetime. Number of seconds that each session will last.
* A value of 0 will keep the session active until the browser is closed (with a limit of 24h).
*/
$config['expiration'] = 2700;
/**
* Number of page loads before the session id is regenerated.
* A value of 0 will disable automatic session id regeneration.
*/
$config['regenerate'] = 0;
/**
* Percentage probability that the gc (garbage collection) routine is started.
*/
$config['gc_probability'] = 2;
迫切需要帮助
答案 0 :(得分:0)
抱歉,我认为这应该是对你的问题的评论,但我还没有这个特权。
无论如何,您使用正确的语法来实例化会话吗?
$this->session = Session::instance()
不
$this->session = new Session();
来自http://dev.kohanaframework.org/issues/2225
显然第二个在Firefox中工作,但在IE中引起问题,对chrome没有任何说明。