[eluser]Larry Rubin[/eluser]
In your README for Ion Auth you recommend using encrypted database sessions.
Does this require any additional steps beyond the following:
1) Create the ci_sessions database table:
Code:
CREATE TABLE IF NOT EXISTS `ci_sessions` (
session_id varchar(40) DEFAULT '0' NOT NULL,
ip_address varchar(16) DEFAULT '0' NOT NULL,
user_agent varchar(50) NOT NULL,
last_activity int(10) unsigned DEFAULT 0 NOT NULL,
user_data text NOT NULL,
PRIMARY KEY (session_id)
);
2) Modify config.php
a) "Encryption Key" setting
Code:
$config['encryption_key'] = "[ 32 char random string]";