diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-22 11:03:41 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-22 11:03:41 +0000 |
commit | c04b4f17f123ceb078409630c13d57604827e6f5 (patch) | |
tree | 3b49826b302d33c2e60bb1b52115f6eb04ff15e8 /engine/schema/upgrades | |
parent | ae2f3b28b11ef6b3b00c4e152851f95b179abf79 (diff) | |
download | elgg-c04b4f17f123ceb078409630c13d57604827e6f5.tar.gz elgg-c04b4f17f123ceb078409630c13d57604827e6f5.tar.bz2 |
Semi-working session code. Still won't permit logging in, commented out until there is time to fix.
Problem seems to be based around the action_gatekeeper() and the values set for the __elgg_session. Removing this component from the key causes the token to be valid.
My feeling is that the session is not being saved or loaded correctly.
git-svn-id: https://code.elgg.org/elgg/trunk@2291 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/schema/upgrades')
-rw-r--r-- | engine/schema/upgrades/2008102101.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/schema/upgrades/2008102101.sql b/engine/schema/upgrades/2008102101.sql index 815fa05de..d0c3d4cac 100644 --- a/engine/schema/upgrades/2008102101.sql +++ b/engine/schema/upgrades/2008102101.sql @@ -3,9 +3,9 @@ CREATE TABLE IF NOT EXISTS `prefix_users_sessions` ( `id` int(11) NOT NULL auto_increment, `session` varchar(255) NOT NULL, `ts` int(11) unsigned NOT NULL default '0', - `data` mediumtext, + `data` mediumblob, PRIMARY KEY (`id`), - KEY `session` (`session`), - KEY `expires` (`expires`) + UNIQUE KEY `session` (`session`), + KEY `ts` (`ts`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
\ No newline at end of file |