How to increase session life time using PHP?

Answers were Sorted based on User's Feedback



How to increase session life time using PHP?..

Answer / swapna

increase session life time in php.ini.session_time_limit().

Is This Answer Correct ?    32 Yes 11 No

How to increase session life time using PHP?..

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

How to increase session life time using PHP?..

Answer / pcoder

use
ini_set(’session.gc_maxlifetime’, ‘28800′);// Set
maxlifetime to 4 hours

Is This Answer Correct ?    19 Yes 9 No

How to increase session life time using PHP?..

Answer / raheem

You can. just open php.ini file and change
session.cookie_lifetime = 0

Is This Answer Correct ?    16 Yes 9 No

How to increase session life time using PHP?..

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

How to increase session life time using PHP?..

Answer / santosh

session.gc_maxlifetime = 1440

Is This Answer Correct ?    0 Yes 0 No

How to increase session life time using PHP?..

Answer / pankaj

set_time_limit(0);

Is This Answer Correct ?    6 Yes 9 No

How to increase session life time using PHP?..

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

Post New Answer

More PHP Interview Questions

How we load all classes that placed in different directory in one php file , means how to do auto load classes.

0 Answers  


What is the purpose of destructor ?

2 Answers  


Explain what are some new features introduced in php7?

0 Answers  


Explain do you use composer? If yes, what benefits have you found in it?

0 Answers  


can anyone explain oops concept in php or give website to learn this concept clearly?

2 Answers   Nadsoft, Satyam,






What is super () python?

0 Answers  


how can i find number of rows in a table using MS Access and php? i used odbc_num_rows($query); but it returned -1.

1 Answers  


I need to know about the courses which are useful in corporate companies.. especially php/mySQL, Java/j2ee, .NET.. also tell if any other courses are valuable

0 Answers  


What do you mean by MVC ?

3 Answers   NIIT,


How do you create an array in php?

0 Answers  


Explain Constant in Class?

0 Answers  


What are new features in php 7?

0 Answers  


Categories