jc85586
Posts: 2
|
| Posted: 11/26/2008, 11:21 AM |
|
I am using the table security method in a simple application to track work tasks for different clients. When I am working at a client site, I log in for that client's tasks list. If I don't have any activity for some period of time (I don't know for sure how long this is, probably half an hour) and I go to update the task list, I have to log on again. Does anyone know if there is a way to extend this time?
|
 |
 |
kevind
Posts: 251
|
| Posted: 12/14/2008, 3:11 AM |
|
check out session timeout if using iis for the server
http://www.w3schools.com/ASP/asp_sessions.asp is all about sessions
also, in CCS 3.x and newer you can implement the 'remember me' feature in security so that the system will auto-login for you whenever it needs it
kd
_________________
thanks
Kevin
======================
CCS 3.2.x / ASP / MS Access /mySQL / PHP / jQuery / jQuery UI / jQuery Mobile
|
 |
 |
jc85586
Posts: 2
|
| Posted: 12/16/2008, 10:44 AM |
|
Thanks for the response. I see I failed to mention that I was using PHP code -- so there needs to be a different solution.
As far as the 'remember me', I use a different logon for each of my clients, so that would not work for me. It works fine for my clients, since they are only using one logon.
|
 |
 |
melvyn
Posts: 333
|
| Posted: 12/17/2008, 11:30 AM |
|
If you use more than one username to the same application, same browser, no methods will work. you can try one session per browser and use ffox, ie, opera, chrome...
cause you're on php, we use session. it's up to your hosting settings to modify the php.ini file and set a diferent timeout for the session. The variable is session.gc_maxlifetime.
Most hosting don't grant access to php.ini, others allow a custom php.ini which override some functions in the main, not accesible. Check your phpinfo() to see how much is your session.gc_maxlifetime variable.
_________________
Melvyn Perez
Puro Codigo
http://purocodigo.com |
 |
 |
aradi
Posts: 66
|
| Posted: 12/17/2008, 12:10 PM |
|
take a look at this link, hope it helps: http://forums.yessoftware.com/posts.php?post_id=66823&s...for+the+session
|
 |
 |
|