Crossing sessions data |
Personally I'm storing my main session in files (user_id,login_time) instead of database. And saving additional content in the database. Always checking on every refresh if the information on file match the one in the database, and if the user have been deleted.
https://community-auth.com/ PHP Code: $config['sess_driver'] = 'files'; |
Messages In This Thread |
Crossing sessions data - by Luis Romero - 02-21-2020, 08:46 AM
RE: Crossing sessions data - by jreklund - 02-21-2020, 01:04 PM
RE: Crossing sessions data - by Luis Romero - 02-21-2020, 02:13 PM
RE: Crossing sessions data - by jreklund - 02-21-2020, 02:57 PM
RE: Crossing sessions data - by Luis Romero - 02-21-2020, 07:27 PM
RE: Crossing sessions data - by jreklund - 02-22-2020, 02:53 AM
RE: Crossing sessions data - by Luis Romero - 02-22-2020, 09:36 AM
|