I have Yii application and inside there is a module 'admin', which requires auth. And so it has model 'LoginForm' - generated by yii, where there is a line:
$duration=$this->rememberMe ? 3600*24*30 : 0;
So, if i check 'remember me' checkbox the session should live for 30 days, but it actually lives for about 90 minutes (approx.) anyway. Can anyone please help me to solve this?