[TUT]How to fix session.php error

[TUT]How to fix session.php error

Sauron

Co-Founder
Staff
Leadership
MC Models
SpigotVIP
Member
Sauron submitted a new resource:

[TUT]How to fix session.php error - How to fix session.php 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