I'm developing a website using opencart and I wanted to extend the session timeout to 1 hour. How can I extend the session timeout in opencart 3? Should I edit the session.php in system/library?
Asked
Active
Viewed 1,525 times
0
-
does this answer your question [OpenCart - How do you increase the Admin session timeout?](https://stackoverflow.com/questions/12386548/opencart-how-do-you-increase-the-admin-session-timeout) – Citizen Patrol Feb 10 '20 at 02:58
-
1Does this answer your question? [OpenCart - How do you increase the Admin session timeout?](https://stackoverflow.com/questions/12386548/opencart-how-do-you-increase-the-admin-session-timeout) – iGatiTech Feb 10 '20 at 04:42
1 Answers
0
You can change the value of session.gc_maxlifetime
. You can change this via .htaccess
, php.ini
or even in your script
itself (before the session_start()
)
I hope working well...

Mujahid Bhoraniya
- 1,518
- 10
- 22