About a year ago, my PHP sessions started timing out - logging clients out of the website. After some reading, I found the suggestion to increase session timeouts which I did in php.ini
session.cookie_lifetime=14400
session.gc_maxlifetime=14400
Yet, my session continues to timeout after about 60 minutes.
I tried a second option from php.net: https://www.php.net/manual/en/function.session-start.php
session_start(['cookie_lifetime' => 14400]);
And still cant get the session to last longer than an hour...
I'm running out of places to check?
PHP Version: 5.6