尝试将生命周期从默认时间延长~8小时到30天
在这里工作:CWebUser
public function init() {
parent::init();
$lifetime = 15; // work! (even without setting gc_maxlifetime)
$lifetime = 2592000; // DONT work! (auto logout in ~8 hours )
$this->authTimeout = $lifetime;
ini_set('session.gc_maxlifetime', $lifetime);
Yii::app()->getSession()->open();
(other code...)
}
如果我设定低值 - 它可以工作,30天 - 不要。