Resource icon

XF 1 Tip How to fix session.php error

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,922
Points
823

Reputation:

LQD submitted a new resource:

How to fix session.php error - maybe you can fix this error

usually its error about broken xf_session table
run this code on PhpMyAdmin
PHP:
REPAIR TABLE xf_session;
İf it's not fixed. you can run this code. But ı recommended take a backup!
Code:
CREATE TABLE xf_session (
session_id VARBINARY(32) NOT NULL,
session_data MEDIUMBLOB NOT NULL,
expiry_date INT UNSIGNED NOT NULL,
PRIMARY KEY (session_id),
KEY expiry_date (expiry_date)
) ENGINE = MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;

Read more about this resource...
 
Top