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, ∼2842🔥, 0💬
Popular Posts:
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...