if I switch on "save session data in database", all the session data is saved in both, the cookie and in the db. while this improves security (i also have all the data encrypted), i want to save very sensitive session data such as "is_logged_in", "session->set_userdata("is_logged_in", "1");", in the DB only.
How can this be achieved? Thanks.