Welcome Guest, Not a member yet? Register   Sign In
Can't install CI...
#2

[eluser]danmontgomery[/eluser]
you have database sessions enabled but the query to fetch the session from the database is failing. Make sure you have set $config['sess_table_name'] in config.php, and that the table exists with the proper structure:

http://ellislab.com/codeigniter/user-gui...sions.html


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)
);


Messages In This Thread
Can't install CI... - by El Forum - 06-26-2010, 02:00 AM
Can't install CI... - by El Forum - 06-28-2010, 08:09 AM
Can't install CI... - by El Forum - 06-29-2010, 04:30 PM
Can't install CI... - by El Forum - 06-30-2010, 12:21 AM
Can't install CI... - by El Forum - 07-19-2010, 08:52 AM
Can't install CI... - by El Forum - 07-23-2010, 01:19 AM
Can't install CI... - by El Forum - 07-23-2010, 02:13 AM
Can't install CI... - by El Forum - 07-23-2010, 09:22 AM
Can't install CI... - by El Forum - 07-23-2010, 09:29 AM
Can't install CI... - by El Forum - 07-23-2010, 09:34 AM



Theme © iAndrew 2016 - Forum software by © MyBB