1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-09 16:17:14 +02:00

Fix for error: session_start(): Failed to decode session object under some circumstances when 'db' method is used.

'session' set as default user tracking.
This commit is contained in:
Cameron
2020-07-01 13:02:58 -07:00
parent 582bd3f72c
commit 99016f5b4a
3 changed files with 15 additions and 2 deletions

View File

@@ -476,7 +476,7 @@ CREATE TABLE session (
session_id varchar(250) NOT NULL default '',
session_expires int(10) unsigned NOT NULL default 0,
session_user int(10) unsigned default NULL,
session_data text NOT NULL,
session_data mediumtext NOT NULL,
PRIMARY KEY (session_id)
) ENGINE=MyISAM;
# --------------------------------------------------------