Hey a&w,
cheers for the suggestions, and spelling supervision: given that I’m not an English native speaker, I need it!
Well about your requests, let’s start (more can be found on the usergiude: Session Class):
$config['sess_cookie_name'] = 'FreakAuth';//<- can be changed I set it to FreakAuth just to avoid other conflicting cookie names
$config['sess_expiration'] = 7200;
$config['sess_encrypt_cookie'] = TRUE; //<-- Whether to encrypt the session data stored in cookies
$config['sess_use_database'] = TRUE; // <-- needed because FAL (or better Db-session library) stores all session stuff into the database table ci_sessions
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_useragent']= FALSE;//<-- if while checking the session against the cookie unique IDnumber we also check against the userBrowser stored in the session variable or not. FAL doesn't
FAL sends just 1 cookie to the user, containing the unique session ID identification number (the same stored in the ci_sessions -> session_id table). If I’m not wrong this cookie expires after 2 hours of user inactivity (this is controlled by the the variable $config[‘sess_expiration’] = 7200;).
Well the DB table autoinstallation is planned for next release!
Stay tuned!
Dan
