Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

yenoyi7740's avatar

How to configure session live time?

I want to set the session lifetime too forever. How can I do that? Is it even possible?

0 likes
1 reply
bobbybouwmann's avatar
Level 88

You can't set it to forever, but you can set it to a high number. By default, it's set to 120 which means 2 hours (2 x 60 minutes).

For example, setting the lifetime to 100 years, you need this formula 100 * (60 * 24 * 365). You need to update the config/session.php file with that value

'lifetime' => 525.600.000, // 100 years
1 like

Please or to participate in this conversation.