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, ∼3353🔥, 0💬
Popular Posts:
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Vi...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
How to make application release build with Visual Studio 2017? If you want to make a final release b...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...