I’m working on a CodeIgniter 4 project using the Shield authentication library. I’ve encountered an issue where user sessions are logging out after a short period of time, even though I’ve extended the session expiration time.
I modified the sessionExpiration setting in Config/App.php to a longer duration
public $sessionExpiration = 7200; // 2 hours
However, the session still expires much sooner than the set expiration time.
Has anyone else faced a similar issue with CodeIgniter 4 Shield? Are there additional configurations or steps I might be missing to ensure the session lasts as expected?