Tagged Questions
4
votes
5answers
4k views
Zend framework session expires prematurely
This should be extremely simple, but I can't seem to get it!
I'm using Zend Framework for PHP and handling sessions with the Zend_Session module. This is what I have in my Initializer (or bootstrap): ...
2
votes
1answer
731 views
CodeIgniter Session Expires on Page Refresh
We have a CodeIgniter based SAAS application. Sessions are stored in the database.
We use this class as a replacement for CI sessions
With one specific customer ( same office, multiple users, same IP ...
2
votes
4answers
520 views
PHP Session Expiration
A question with respect to Session Expiration in PHP.
I need my server to throw away session information if that user has been inactive for a while (for testing purposes, 5 seconds).
I've looked at ...
2
votes
1answer
1k views
Design Classic ASP applications to detect session expiration dynamically
I've got a Classic ASP application that relies on session; if the user leaves a screen idle and then runs a form post or other operation, I'd like to know whether the session has expired.
Currently ...
1
vote
0answers
76 views
Django key based session expiration
I have a website which contains different rule sets for diferent type of users.
However, one rule/permission is depending session expiration.
For example, an unauthenticated users' session must be ...
1
vote
1answer
410 views
How to detect when sessions expire in asp.net?
I want to track if users loout or their session expire. I need to k now exactly when their session expired (within +/- 5 min). Right now if a users leaves the page open in the browser and returns ...
1
vote
1answer
1k views
How to have PHP session expire upon browser close OR some extended duration of time
My php session is set to expire when user closes the browser but I noticed that if I leave my browser open for an extended period of time (24+ hours for example) the session still persists.
Is ...
1
vote
2answers
958 views
PHP Session expire event
I am trying to make some changes to an opensource project. I want to keep track of when users log in and log out.
Right now I change their login status in db when they login or manually log out. The ...
0
votes
1answer
33 views
Session expiration during postbacks
For some reason my session is expired during postbacks. I can see that by putting a breakpoint on sessiion_onEnd on global.asax. Im not using IIS but casini. there is not consistancy for this ...
0
votes
2answers
352 views
JSF - session expiration real time remaining time!
in a JSF 2.0 context , session.getMaxInactiveInterval() returns the session expiration remnant time, a static way.
Is there any workaround allowing one to display the remaining time in realtime.
...
0
votes
3answers
1k views
CodeIgniter extend user's session expiration time
Is it possible to extend user's session expiration time in CI. What I want to do is, by default every user's session cookie lasts for example 1 day, but every time user visits the site his session ...