Save session data to db just before session get auto destroyed because of timeout - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Save session data to db just before session get auto destroyed because of timeout (/showthread.php?tid=87687) |
Save session data to db just before session get auto destroyed because of timeout - Didi - 05-20-2023 How to save session data to database just before session get auto destroyed because of timeout? I am capturing session data when User logout, ex: ip_address, id_user, id_app, save them to database, its working fine when user get logout manually (By calling logout method) but I am not able to capture it when user's session gets auto destroyed after timeout. Please help me to resolve this problem, I am using Codeigniter 4.1.9 I have try extending the Session library: Code: <?php But it not working, because I didn't get record in my database when User's session gets auto destroyed after timeout. |