session-timeout Questions

6

Solved

Is there any option to destroy a session if user does not perform any action in 10 minutes?
Frivolity asked 29/1, 2012 at 0:31

2

I am using the Timeoutable feature of Devise, and I am a little confused. If the user's session times out, they are redirected to the login page when they refresh the page or perform an action that...
Mejia asked 1/4, 2016 at 14:31

7

Solved

I would like to extend the session timeout in php I know that it is possible to do so by modifying the php.ini file. But I don't have access to it. So is it possible to do it only with php code? ...
Attitudinarian asked 29/11, 2011 at 13:13

4

Solved

I want to display in a <p:growl> that the session has expired. I found many methods to handle session expiration like: Session timeout and ViewExpiredException handling on JSF/PrimeFaces aja...
Hierology asked 30/9, 2013 at 15:3

4

I have implemented a session timeout warning using javascript that simply asks the user if they want to extend their session or logout. The problem is that this is for an intranet portal where powe...
Accentuation asked 12/12, 2008 at 19:14

3

Solved

My requirement is to notify the user with a popup saying that the user session is about to time out in x seconds in case user does not perform any activity on the web page. Addition to this requir...
Fogged asked 31/12, 2009 at 12:41

2

We are using Kafka high level consumer , and we are able to successfully consume messages but the zookeeper connections keep expiring and reestablishing. I am wondering why are there no heartbeat...

3

Solved

C# MVC4 project: I want to redirect to a specific page when the session expires. After some research, I added the following code to the Global.asax in my project: protected void Session_End(objec...
Necessitous asked 21/8, 2014 at 10:1

2

Solved

My application currently use Spring Session together with Redis as the backend. I searched into the official documentation for Spring Session but was not able to find what the default session timeo...
Stint asked 10/9, 2015 at 12:11

2

Solved

I'm trying to set the session-timeout value in an embedded Jetty 8 instance. With embedded Jetty, how can I programmatically set the session-timeout value that would otherwise be set in the web.xm...
Hinze asked 20/12, 2013 at 21:23

3

Solved

My organization is switching to a Google Business account, and everyone needs to transfer their Drive files to their new accounts. Drive will not allow transfer of ownership between these accounts,...

2

Solved

Below is a simple echo server. But if the client does not send anything for 10 seconds, I want to close the connection. import asyncio async def process(reader: asyncio.StreamReader, writer: as...
Flexuous asked 27/12, 2018 at 20:9

5

I have created a SpringBoot MVC/Security app 1.2.2.RELEASE and my application.properties contains server settings like #Tomcat port and contextPath details server.port=8080 server.contextPath=/tes...
Chorizo asked 18/3, 2015 at 17:3

0

I'm trying to use identity with cookie authentication in an asp.netcore 2.0 MVC app. I want to set session timeout to something like 150 days, so users that log in don't need to log in again during...

3

Solved

I've been using Sitecore version 7.1 for a few months now and have noticed that the Sitecore client logs me out after being idle for around 20 mins. Also other users have reported these issues whil...
Gaskin asked 6/3, 2014 at 15:34

2

Solved

I am using Spring Security 3.0 to authenticate with an LDAP server and I cannot figure out to set my own session timeout period. I believe that the default is 30 minutes but I need to set it to lon...
Reamonn asked 22/3, 2011 at 0:0

2

Solved

I have written a HTML 5 application that uses AngularJS and interfaces with a Java REST backend running on Tomcat. I use Spring Security to handle login and security. When the user enters the web...
Rigging asked 29/9, 2013 at 15:21

5

Solved

I've included the relevent parts of our Yii config file below: return array( ... 'components'=>array( 'session' => array( 'timeout' => 86400, ), 'user'=>array( 'allowAutoLogin' =...
Garvey asked 12/10, 2012 at 12:42

2

In my app I restrict some access to some actions and pages if a user is not logged in. I have: var restrict = function(req, res, next) { if (!req.user) { console.log("USER isn't logged in.") re...

3

Solved

Is there any way to manage user session using Angularjs?, I mean:: Session timeout - when system is idle. Alerts when session is near to expire with option to resume session. Redirect (or an...
Henkel asked 22/5, 2013 at 16:25

1

I have seen many answers similar to this question.None helped me resolving this. Issue- I want to display a warning message after 5 minutes of inactivity,If the user is still inactive post 5 minute...
Brendanbrenden asked 28/2, 2017 at 10:50

5

Is this possible to set different timeout for different session in ASP.Net? Edited I mean that in the same page i have 2 session variable Session["ss1"] and Session["ss2"], is there possible to se...
Leticialetisha asked 20/5, 2011 at 8:47

2

While running my test, I need to have long delays (~40 seconds). And I see, that Selenium session gets deleted during that time. Please help: How can I configure session timeout to increase? Her...
Purposive asked 26/3, 2015 at 7:30

3

Solved

I am not sure if I understand: <session-config> <session-timeout>30</session-timeout> <!-- 30 minutes! --> <cookie-config> <http-only>true</http-only> ...
Scrupulous asked 30/1, 2016 at 18:26

7

Solved

In one of controllers in my Grails application I'm preserving a parameter value in a session variable like this: session.myVariable = params.myValue After that, I can access the saved value from...
Handbill asked 25/5, 2010 at 18:45

© 2022 - 2024 — McMap. All rights reserved.