Bump up the session expire time in sessions.php then?
Code:
if (empty($config["Sessions"]["session_length"]))
$config["Sessions"]["session_length"] = 30;
Could even insert a config value to control it as the if statement above is checking for. It isn't default but looks like you can easily set the Session length in the general settings of the admin.
Default is 30 minutes if I'm reading it right.
Code:
$curtime = time();
$expiry_time = $curtime + $config["Sessions"]["session_length"];
Anyhow hth.
