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, ∼3383🔥, 0💬
Popular Posts:
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...
What is EPUB 3.0 Metadata "dc:description" Element? EPUB 3.0 Metadata "dc:description" is an optiona...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
What Happens If One Row Has Missing Columns? What happens if one row has missing columns? Most brows...