View Single Post
  #4  
Old 10-06-2003, 02:11 PM
  B00MER's Avatar 
B00MER B00MER is offline
 

X-Guru
  
Join Date: Sep 2002
Location: Keller, TX (Cart-Lab.com)
Posts: 3,165
 

Default

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.
__________________
Cart-Lab - 100+ Social Bookmarks for X-Cart.
Reply With Quote