Sauron submitted a new resource:
[TUT]How to fix session.php error - How to fix session.php error
Read more about this 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
İf it's not fixed. you can run this code. But ı recommended take a backup!PHP:REPAIR TABLE xf_session;
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...