Welcome Guest, Not a member yet? Register   Sign In
Session logout problems
#22

[eluser]InsiteFX[/eluser]
If you are running CI 2.1.0 then make sure that your session table is correct because they made an update to it awhile back! See below new session table.
Code:
-- ------------------------------------------------------------------------

--
-- Table structure for CodeIgniter 2.1.0 `ci_sessions`.
--
DROP TABLE IF EXISTS `ci_sessions`;

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(120)                      NOT NULL,
  `last_activity` int(10)      unsigned DEFAULT 0   NOT NULL,
  `user_data`     text,
  PRIMARY KEY (`session_id`),
  KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;

-- ------------------------------------------------------------------------
--  `user_data` text,       COMMENT - maximum length of 65535 characters.
--  `user_data` mediumtext, COMMENT - maximum length of 16777215 characters.
--  `user_data` longtext,   COMMENT - maximum length of 4294967295 characters.
-- ------------------------------------------------------------------------

If the table is not correct it will cause logouts...


Messages In This Thread
Session logout problems - by El Forum - 05-13-2009, 03:42 PM
Session logout problems - by El Forum - 05-13-2009, 04:22 PM
Session logout problems - by El Forum - 05-13-2009, 07:07 PM
Session logout problems - by El Forum - 05-13-2009, 07:31 PM
Session logout problems - by El Forum - 05-13-2009, 07:41 PM
Session logout problems - by El Forum - 05-14-2009, 01:42 AM
Session logout problems - by El Forum - 05-14-2009, 01:49 AM
Session logout problems - by El Forum - 05-14-2009, 11:27 AM
Session logout problems - by El Forum - 05-15-2009, 06:21 AM
Session logout problems - by El Forum - 05-15-2009, 06:23 AM
Session logout problems - by El Forum - 05-15-2009, 06:31 AM
Session logout problems - by El Forum - 05-15-2009, 07:54 AM
Session logout problems - by El Forum - 05-15-2009, 07:59 AM
Session logout problems - by El Forum - 05-15-2009, 08:00 AM
Session logout problems - by El Forum - 05-15-2009, 08:34 AM
Session logout problems - by El Forum - 05-15-2009, 08:46 AM
Session logout problems - by El Forum - 05-18-2009, 08:04 AM
Session logout problems - by El Forum - 01-12-2011, 12:04 AM
Session logout problems - by El Forum - 02-08-2012, 12:56 PM
Session logout problems - by El Forum - 02-10-2012, 12:19 PM
Session logout problems - by El Forum - 02-15-2012, 07:42 AM
Session logout problems - by El Forum - 02-15-2012, 12:33 PM
Session logout problems - by El Forum - 02-15-2012, 12:35 PM
Session logout problems - by El Forum - 02-15-2012, 12:38 PM
Session logout problems - by El Forum - 02-18-2012, 06:33 PM



Theme © iAndrew 2016 - Forum software by © MyBB