• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Strange, Sudden Problem

O

osmoswebnow

Guest
I have recently upgraded to SB4 not even a month back, and I am facing this error all of a sudden, today

Internal SiteBuilder error.
File: /usr/local/sitebuilder/include/Zend/Zend/Db/Adapter/Abstract.php; Line: 156
Message: SQLSTATE[HY000]: General error: 1016 Can't open file: 'session.MYI' (errno: 145); Code: HY000

SwSoft insists that I have to pay, because "installation service that i requested for was successful"

Whats going wrong here, Dmitry n others ? Nothing has changed on my servers, and all my other sites are running pretty well... so why's this happening?

Sanjeev
 
It looks like Sitebuilder 'session' table could not be read/opened for some reasons. Try to check if appropriate files for 'session' table are on the server:

# ls -la /var/lib/mysql/sitebuilder3/|grep session
-rw-rw---- 1 mysql mysql 8620 Sep 22 2006 session.frm
-rw-rw---- 1 mysql mysql 209332 Aug 2 18:20 session.MYD
-rw-rw---- 1 mysql mysql 126976 Aug 2 18:20 session.MYI

(mysql databases location can be different on your server).
After that log into Sitebuilder database and check if this table is corrupted or not:

mysql> check table session;

Let me know about the results.
 
Looks like you have to repair the session table.

Logon to MySQL and enter "REPAIR TABLE sitebuilder3.session"
 
Back
Top