• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Table 'session' is marked as crashed

I

irvan

Guest
how to repaired this table? this table on mysql or sql lite?
when i open my sitebuilder server.

Internal Sitebuilder error.
File: /usr/local/sitebuilder/include/Zend/Zend/Db/Adapter/Abstract.php; Line: 156
Message: SQLSTATE[HY000]: General error: 1194 Table 'session' is marked as crashed and should be repaired; Code: HY000
 
As I understand this is 'sitebuilder3.session' table. Try to log into MySQL and check this table with help of:

mysql> check table sitebuilder3.session;

if it outputs any errors try to repair it with:

mysql> repair table sitebuilder3.session;
+----------------------+--------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+----------------------+--------+----------+----------+
| sitebuilder3.session | repair | status | OK |
+----------------------+--------+----------+----------+
1 row in set (0.03 sec)

Hope it helps.
 
Back
Top