• 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.

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