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 to convert a string to uppercase in php?

0 Answers  


Explain about error handling in php?

1 Answers   INDUS, Life Infotech, Yahoo,


How to write a program to make chess?

0 Answers  


Can i get free good material for preparation for Zend Certification can i get good questions about certification?

0 Answers  


What is composer install?

0 Answers  






> symbol is used to redirect the output of a command. State Whether True or False?

0 Answers  


How can you send http header to the client in php?

0 Answers  


Does empty check for null?

0 Answers  


What is the role of the .htaccess file in php?

0 Answers  


WHat is the diff. between PHP4 and PHP5?

6 Answers   Clarion Technologies, IBM, OmniNet, Sparkton Infotech,


Write a program using while loop?

0 Answers  


What is the exact Diff. between include_once() and require_once() in PHP?

12 Answers  


Categories