• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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