Welcome Guest, Not a member yet? Register   Sign In
DB_Session not working! CI 2.0.2
#3

[eluser]InsiteFX[/eluser]
For one the session databse table is incorrect there has been a change to it but the documentation has not been updated!
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(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`)
) 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.

InsiteFX


Messages In This Thread
DB_Session not working! CI 2.0.2 - by El Forum - 06-03-2011, 06:41 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-05-2011, 03:23 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-05-2011, 05:20 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-05-2011, 07:48 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-05-2011, 08:56 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-05-2011, 09:23 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-05-2011, 03:35 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 08:39 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 09:17 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 10:49 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 11:15 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 11:51 AM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 01:02 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 02:17 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 03:01 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 03:39 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 08:04 PM
DB_Session not working! CI 2.0.2 - by El Forum - 06-06-2011, 08:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB