Questions tagged [expired-sessions]
74 questions
0
votes
0 answers
Facebook SDK Integration with Android app
I am integrating Facebook SDK in my android app for Facebook login functionality.
In onSuccess(), I am checking token expiry time, but time is coming of
2016.
LoginManager.getInstance().registerCallback(callbackManager, new…

Parth
- 1,908
- 1
- 19
- 37
0
votes
0 answers
Session bean timeout issues
So because all my jsf managed beans are session scoped, whenever the session expires due to idleness(e.g. user leaving his screen unattended) then, it gives an exception. What is a good jsf/jee based solution for this?( no jsp or servlets…

Arnold
- 181
- 3
- 12
0
votes
0 answers
Session expire on browser closing in Odoo
In Odoo 10, how can I delete or expire the session on the browser window closing.
Currently the session does not expire until I logout.
I got a solution for session expire on time out. But that's not required for me.
0
votes
1 answer
Yii sessions storage and expire flow
Currently sessions are stored in a database table. Of course they have an expire timestamp. I wonder, when a sessions reaches it's expirationdate, will the record also be deleted from the database? I cannot find that particular info in the Yii-docs.

PimD1988
- 307
- 5
- 14
0
votes
0 answers
after session is expried, the whole web renders in different way after I call an ajax request
I meet a problem like this.
My web run correctly until I open 2 tabs (in the same browser). In both tabs, I log in to my web. After that, I log out in one tab, in the other tab, I call an ajax request and it returns me to login page. I log in again…

MCT
- 21
- 5
0
votes
2 answers
password request has expired in magento ver 1.9.0.1
i have created a whole website on my test server then moved it to client server. After clicking the "Forgot password" option, i got link on my email . When i click on that link it redirects me to reset password page. Now when I try to reset…

user2583432
- 1
- 2
0
votes
1 answer
expire page on back button symfony2
How do I expire a page once a form is submitted in symfony2?
Sometimes our users are using the back button and re-submit the form. I would like to inform them in case a form has already been submitted that they should not re-submit it.
Sometimes I…

xfscrypt
- 16
- 5
- 28
- 59
0
votes
1 answer
How to overcome browser's "Save" feature after SESSION expires?
PDF Generation Dependent on $_POST
I generate a PDF in my browser, using a PHP script, where the PDF-generating script depends on variables sent to it through POST. When POST is empty, PDF cannot be generated and it issues a warning saying "PDF…

Dennis
- 7,907
- 11
- 65
- 115
0
votes
1 answer
Session Expires within few 4 minutes
Recently i'm facing a problem of session timeout. User can logedin successfully but during his operation over few pages, Session times out within couple minutes(<4 mins).
Most recently when I moved my application on a new server be the inception of…

Aditya Tiwari
- 1
- 1
0
votes
1 answer
Cakephp does not expire page after logout
I am learning cakePHP, I have written the example of the manual, the problem is with the method logout of the UsersController, when I press the link logout the application is redirected to the login form, but the back button of the browser allows…

Alexander Ceballos
- 750
- 2
- 20
- 36
0
votes
1 answer
How to set a correct session expired for my code?
I have a code that doing the popup message for the session expired, as following. However, this code cannot do a correct counting session. When run the program, it will direct popup the session expired message which didn't follow the time that I had…

user1539511
- 33
- 1
- 3
-1
votes
1 answer
How do i disable submit button in javascript after deadline
How do I disable a submit button in JavaScript after the deadline.
Please I need to submit a button to be taken away after the deadline or return an alert that the deadline is gone.
Thanks
Welcome!
Please find below your…

Oluwafemi Akinyemi
- 119
- 10
-1
votes
2 answers
why my session expire after 1440 second after login during activity in php
My session expire in 24 minutes after login.
When I am performing activities continuously, instead it takes latest time and update that, but it saves initially login time and expires according to that. even I have performed activity 1 minute before.…
-1
votes
1 answer
Is this a viable session expire?
Basically what I wanted was to create a session with an expire time of 24 hours.
And I wrote this:
session_start();
if (!isset($_SESSION['TIME_START']) || $_SESSION['TIME_START'] < time()) {
$_SESSION['TIME_START'] = time();
} else if…

McQueso
- 1
- 1