Welcome Guest, Not a member yet? Register   Sign In
Error when session table is updated
#5

[eluser]InsiteFX[/eluser]
LuckyFella73, that is the wrong table here is the correct one
Code:
-- ------------------------------------------------------------------------

--
-- Table structure for CodeIgniter `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(45)           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.
-- ------------------------------------------------------------------------


Messages In This Thread
Error when session table is updated - by El Forum - 06-20-2012, 08:40 AM
Error when session table is updated - by El Forum - 06-20-2012, 08:55 AM
Error when session table is updated - by El Forum - 06-20-2012, 09:08 AM
Error when session table is updated - by El Forum - 06-20-2012, 09:34 AM
Error when session table is updated - by El Forum - 06-20-2012, 10:47 AM
Error when session table is updated - by El Forum - 06-20-2012, 10:55 AM
Error when session table is updated - by El Forum - 06-20-2012, 11:03 AM
Error when session table is updated - by El Forum - 06-20-2012, 11:09 AM
Error when session table is updated - by El Forum - 06-20-2012, 11:11 AM
Error when session table is updated - by El Forum - 06-20-2012, 01:11 PM



Theme © iAndrew 2016 - Forum software by © MyBB