Tools, FAQ, Tutorials:
Setting session.gc_maxlifetime Properly in PHP
How To Set session.gc_maxlifetime Properly in PHP?
✍: FYIcenter.com
As you know that session.gc_maxlifetime is the session value timeout period. You should set this value based on the usage pattern of your visitors. Here are some suggestions:
# Set it to 20 minutes for a normal Web site: session.gc_maxlifetime = 1200 # Set it to 24 hours if visitors comes to the site many time a day: # Example: Yahoo email site expires your session in 24 hours. session.gc_maxlifetime = 86400
⇒ Setting session.gc_divisor Properly in PHP
⇐ Testing the Session Garbage Collection Process in PHP
2016-10-24, ∼2709🔥, 0💬
Popular Posts:
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
How to add request query string Parameters to my Azure API operation to make it more user friendly? ...
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker De...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...