Table of Contents
Summary of reasons for session failure and solutions to lost sessions, session summary
Home Backend Development PHP Tutorial Summary of reasons for session failure and solutions to loss, session summary_PHP tutorial

Summary of reasons for session failure and solutions to loss, session summary_PHP tutorial

Jul 12, 2016 am 09:07 AM
session Invalid

Summary of reasons for session failure and solutions to lost sessions, session summary

I went to GTSC for an interview yesterday, and the interviewer asked me how to check after the session is lost. To be honest, I have rarely encountered such a situation during development so far. The only thing I thought of was session timeout, and doing session reading and writing logs. I found that the interviewer was not very satisfied after hearing this, sweat!

In any case, it is a good opportunity to learn. I took the time today to check the methods of dealing with these problems on the Internet and summarize them. I hope it will be helpful to everyone.

By the way, the working principle of Session in asp:

asp’s Session is process dependent. The ASP Session state is stored in the IIS process, which is the inetinfo.exe program. So when the inetinfo.exe process crashes, this information is lost. In addition, restarting or closing the IIS service will cause information loss.

Implementation of asp.net Session

asp.net’s Session is based on HttpModule technology. HttpModule can control the status of the request before the request is processed. Since the Session itself is used for state maintenance, it is perfect to use HttpModule as the Session. .

Reason 1:

The files in the bin directory are rewritten. ASP.NET has a mechanism. In order to ensure that the system runs normally after the dll is recompiled, it will restart the website process. This will cause the Session to be lost, so if there is an access database Located in the bin directory, or if other files are overwritten by the system, the session will be lost

Reason 2:

In the folder options, if "Open folder window in a separate process" is not turned on, once a new window is created, the system may think it is a new Session and cannot access the original Session, so this option needs to be turned on. Otherwise, the session will be lost

Reference configuration:

http://jingyan.baidu.com/article/22fe7ced78594f3002617f04.html

Reason 3:

It seems that most of the session losses are caused by the client, so start from the client and see if the cookie is turned on

Reason 4:

Is there something wrong with the time setting of the Session? Will it be lost due to timeout?

Reason 5:

The limit on the number of cookies in IE (20 cookies per domain) may cause session loss

Reason 6:

Use web garden mode, and use InProc mode as a way to save sessions

Resolving lost experience

1. To determine whether it is caused by reason 1, you can track the modification time of a file in the bin every time you refresh the page

2. Make session reading and writing logs. Each time reading and writing a session must be recorded, and the SessionID, session value, page, current function, and the number

in the function must be recorded.

A few session operations will make it much easier to find the cause of loss

3. If allowed, it is recommended to use state server or sql server to save the session, so that it is not easy to lose

4. Add code to global.asa to record the creation time and end time of the Session. Session loss caused by timeout can be recorded in SessionEnd.

5. If client scripts are used in some codes, such as javascript to maintain session status, you should try to debug the script to see if the session is lost due to script errors

The above content is the several reasons for session failure shared by the editor of Bangkejia. I hope it will be helpful to everyone.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1058160.htmlTechArticle Summary of reasons for session failure and solutions to loss, session summary I went to GTSC for an interview yesterday, and the interviewer asked me about Session The problem of how to check after it is lost, to be honest, has been under development until now...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to set session timeout in SpringBoot Session How to set session timeout in SpringBoot Session May 15, 2023 pm 02:37 PM

The problem was found in the springboot project production session-out timeout. The problem is described below: In the test environment, the session-out was configured by changing the application.yaml. After setting different times to verify that the session-out configuration took effect, the expiration time was directly set to 8 hours for release. Arrived in production environment. However, I received feedback from customers at noon that the project expiration time was set to be short. If no operation is performed for half an hour, the session will expire and require repeated logins. Solve the problem of handling the development environment: the springboot project has built-in Tomcat, so the session-out configured in application.yaml in the project is effective. Production environment: Production environment release is

How to solve session failure How to solve session failure Oct 18, 2023 pm 05:19 PM

Session failure is usually caused by the session lifetime expiration or server shutdown. The solutions: 1. Extend the lifetime of the session; 2. Use persistent storage; 3. Use cookies; 4. Update the session asynchronously; 5. Use session management middleware.

Solution to PHP Session cross-domain problem Solution to PHP Session cross-domain problem Oct 12, 2023 pm 03:00 PM

Solution to the cross-domain problem of PHPSession In the development of front-end and back-end separation, cross-domain requests have become the norm. When dealing with cross-domain issues, we usually involve the use and management of sessions. However, due to browser origin policy restrictions, sessions cannot be shared by default across domains. In order to solve this problem, we need to use some techniques and methods to achieve cross-domain sharing of sessions. 1. The most common use of cookies to share sessions across domains

What should I do if the php session disappears after refreshing? What should I do if the php session disappears after refreshing? Jan 18, 2023 pm 01:39 PM

Solution to the problem that the php session disappears after refreshing: 1. Open the session through "session_start();"; 2. Write all public configurations in a php file; 3. The variable name cannot be the same as the array subscript; 4. In Just check the storage path of the session data in phpinfo and check whether the sessio in the file directory is saved successfully.

What is the default expiration time of session php? What is the default expiration time of session php? Nov 01, 2022 am 09:14 AM

The default expiration time of session PHP is 1440 seconds, which is 24 minutes, which means that if the client does not refresh for more than 24 minutes, the current session will expire; if the user closes the browser, the session will end and the Session will no longer exist.

How to solve the common problem of Laravel login time invalidation How to solve the common problem of Laravel login time invalidation Mar 06, 2024 pm 09:24 PM

How to solve the common problem of Laravel login time expiration When using Laravel to develop web applications, login authentication is a very important function. However, sometimes if a user does not operate for a long time after logging in, the page may automatically log out or the authentication may fail. This problem is relatively common. The following will introduce how to solve this problem by setting the session time and provide specific code examples. 1. Set the session expiration time in Laravel, by default sessi

PHP and REDIS: How to implement distributed cache invalidation and update PHP and REDIS: How to implement distributed cache invalidation and update Jul 21, 2023 pm 05:33 PM

PHP and REDIS: How to implement distributed cache invalidation and update Introduction: In modern distributed systems, cache is a very important component, which can significantly improve the performance and scalability of the system. At the same time, cache invalidation and update is also a very important issue, because if the invalidation and update of cache data cannot be handled correctly, it will lead to system data inconsistency. This article will introduce how to use PHP and REDIS to implement distributed cache invalidation and update, and provide relevant code examples. 1. What is RED

How to solve the problem that the Springboot2 session timeout setting is invalid How to solve the problem that the Springboot2 session timeout setting is invalid May 22, 2023 pm 01:49 PM

Problem: Today, we encountered a setting timeout problem in our project, and changes to SpringBoot2’s application.properties never took effect. Solution: The server.* properties are used to control the embedded container used by SpringBoot. SpringBoot will create an instance of the servlet container using one of the ServletWebServerFactory instances. These classes use server.* properties to configure the controlled servlet container (tomcat, jetty, etc.). When the application is deployed as a war file to a Tomcat instance, the server.* properties do not apply. They do not apply,

See all articles