session-timeout Questions
1
I am working on a microservice architecture developed in Spring boot with an API gateway service using Spring Cloud Gateway. I am using Keycloak as an identity provider. Everything is working fine ...
Silvie asked 17/6, 2020 at 13:27
2
Gunicorn allows configuring a timeout for requests, as demonstrated in their documentation below. This seems to be a global configuration for the entire application.
Is it possible to configure di...
Pampas asked 20/7, 2017 at 16:20
6
Solved
If I manage a session (any concept of a session is suitable) in my app, and I deem that the session has expired, for whatever reason, how do I programmatically restart the application, universally ...
Gaur asked 27/11, 2014 at 16:24
7
Solved
I want to unset/delete my existing cookie with this:
setcookie ("user", "", time()-1);
unset($user);
But cookies can not be deleted or unset. So what is problem?
Worriment asked 1/12, 2011 at 12:35
6
Solved
I know this is duplicate but I could not get reliable solution(for asp.net web).
I just want to redirect to the login page if session expires.
I have tried following:
1. using jquery status code
$...
Amply asked 31/12, 2012 at 11:25
4
Solved
I'm using spring/spring-security 3.1 and want to take some action whenever the user logs out (or if the session is timed out). I managed to get the action done for logout but for session timeout, I...
Selfinterest asked 7/8, 2012 at 9:30
12
How can I set session expiration time dynamically in codeigniter?
For example, if a user logs in and has the role of admin, the expiration time should be longer than if a user logs in who does not...
Mythological asked 10/8, 2011 at 4:10
6
Solved
"My website is LIVE. And this problem is related to configure session timeout on LIVE server and not in localhost."
I have a problem with session expiring too soon. link in 2-5 minutes only. I tri...
Defector asked 13/3, 2013 at 8:39
2
Solved
For security reasons I set SESSION_EXPIRE_AT_BROWSER_CLOSE to true.
But, browser-length cookies (cookies that expire as soon as the user closes his or her browser) don't have a expire time, then S...
Garget asked 13/2, 2012 at 21:2
6
Solved
I have a problem with my application: my application has many forms and need about 1 hour to finish this form because the form is dynamic (can add other forms). The problem is: the session of my we...
Olympiaolympiad asked 11/5, 2011 at 10:19
3
Solved
I have a classic ASP site that I would like the sessions to stay alive as long as the user has a page open. So I used some Javascript to periodically call a 'keepalive' ASP page to keep the session...
Commute asked 20/9, 2011 at 3:40
2
Solved
This probably is a rather simple question. I have found dozens of similar ones, asking how to generally shorten or extend the session life time in PHP. I know how to achieve that, my PHP script rea...
Twelfth asked 13/12, 2015 at 15:3
6
Solved
I have Admin Page wherein I use to do some update work for my site. The problem is the session will expire within a minute or 30 seconds and will logout the user. I have set the Session in Web.Conf...
Salesman asked 13/1, 2014 at 17:52
3
Solved
i am using the following technique...
From the login.php the form posts to the page check.php where i do this
<?php
$uzer = $_POST['user_name'];
$pass = $_POST['user_pass'];
require ('DB_co...
Innutrition asked 22/9, 2010 at 14:17
7
Solved
I like to host asp.net web application in IIS 7.0 (windows server 2008).
I configured session state as sessionstate mode="inproc" timeout = 120.
Even the session expires within 15 seconds. What ...
Dolorisdolorita asked 4/6, 2009 at 9:16
1
Solved
I am use URLSession for POST request and obtain list of players, but sometimes I am obtain error "Error Domain=NSURLErrorDomain Code=-1001", how I can handle it?
How I am get error inside...
Garbe asked 17/11, 2020 at 22:14
3
Solved
I'm trying to write the part of my app so that it handles session timeouts gracefully, but I can't seem to control how the duration of time before a timeout occurs for testing.
I am using JBoss 5....
Kolosick asked 7/7, 2010 at 17:51
3
I have a requirement to display timeout warning modal after 13 mins of inactivity and end session after 15 mins if user takes no action. I need to achieve this using reactjs. I checked react-timeou...
Fraternity asked 4/8, 2016 at 17:59
3
I have an ajax call to MVC which returns a partialview. This is all fine until the session ends or the cookie expires. When I make the ajax call it displays the content inside a div that was meant ...
Nino asked 14/5, 2012 at 20:29
3
Solved
I"m using Spring MVC/Security 3.X. The issue is that I'm getting 403 at the login page whenever the session timeout, where underneath "InvalidCsrfTokenException" is being thrown by Spring framework...
Imitation asked 7/9, 2015 at 22:45
3
I have an application system that developed based on IdentityServer4 and .NET Core 2.0. Just recently I noticed that log into the server will timeout in 30 minutes regardless of user activity. Clie...
Aracelis asked 6/4, 2018 at 23:29
5
Solved
Currently, my index.html file contains
<a href="static/file.ext">Download</a>
I want to change this so that the download url is only valid for a certain time. For example, how would ...
Shellyshelman asked 4/9, 2015 at 5:1
6
Solved
I find this article to be useful for non-ajax request How to handle session expiration and ViewExpiredException in JSF 2?
but I can't make use of this when I am submitting using an AJAX call.
Supp...
Arcanum asked 26/6, 2012 at 8:10
3
Solved
Can someone explain exactly how to make the session to last for longer in PHP, but without using php.ini?
I've tried the following in .htaccess:
<IfModule mod_php5.c>
#Session timeout
php...
Shareeshareholder asked 20/5, 2011 at 17:49
1
I am using ASP.NET Zero version 7 of ASP.NET Core, MVC and jQuery project.
I am trying to set session timeout / expiry time to automatically log out from the application when the application is id...
Rosamondrosamund asked 18/12, 2019 at 9:56
1 Next >
© 2022 - 2024 — McMap. All rights reserved.