How to increase session life time using PHP?
Answers were Sorted based on User's Feedback
Answer / swapna
increase session life time in php.ini.session_time_limit().
| Is This Answer Correct ? | 32 Yes | 11 No |
Answer / ram
Increase session.gc_maxlifetime in php.ini file from 1440 to
18000 (5 hrs) and restart the webserver.
| Is This Answer Correct ? | 21 Yes | 3 No |
Answer / pcoder
use
ini_set(’session.gc_maxlifetime’, ‘28800′);// Set
maxlifetime to 4 hours
| Is This Answer Correct ? | 19 Yes | 9 No |
Answer / raheem
You can. just open php.ini file and change
session.cookie_lifetime = 0
| Is This Answer Correct ? | 16 Yes | 9 No |
Answer / puneet bhatt
If you want to increase the lifetime of sessions on your
server, you need to edit the php.ini file which is usually
found in the /etc/ directory, but it may be different on
your server.
| Is This Answer Correct ? | 8 Yes | 7 No |
Answer / amit tiwari
The PHP global setting sessions.gc_maxlifetime is used by
default. You can increase session life time by adding a line
such as:
$SESS_LIFE=7200;
to set it to two hours.
| Is This Answer Correct ? | 7 Yes | 23 No |
What kind of variable is age?
This is regarding file uploading. 1. Who will be the owner of the uploaded file ? 2. What permission you will give for an uploaded file ? 3. What is mean by user, group and others and what kind of permission you will give for each user and explain the reason?
What are the three parts of an http request?
Describe which programming language does php parallel to?
Why is php used for web development?
what is php stands for?
23 Answers Infosys, Satyam, Torque Infotech,
What is the use of imagetypes() method?
Can we override magic methods in php?
which function used to get the file name in php?
Tell me is it possible to protect special characters in a query string?
Explain php parameterized functions.
What are the string function in php?