• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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