• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Error: PleskFatalException for a domain

C

CesarV

Guest
When I try to access a domain in Plesk 9.2.3 Linux, gives the following error:

Unable to init Account object:
0: common_func.php3: 108
psaerror (string 'Unable to init Account object:', string 'Account: Unable to select: no such row in the table')
1: class.SysUser.php: 67
SysUser-> SysUser (integer '359 ')
2: common_func.php3: 3110
objectMaker (string 'SysUser', integer '359 ')
3: class.PHostingManager.php: 67
PHostingManager-> PhostingManager (integer '353 ')
4: client.domain.hosting.anonymous-ftp.php: 17
plesk__client__domain__hosting__anonymous_ftp-> validateHosting (object of type BsDomain)
5: client.domain.hosting.anonymous-ftp.php: 47
plesk__client__domain__hosting__anonymous_ftp-> validateItem (object of type UserAdmin)
6: UIPointer.php: 1123
UIPointer-> validate ()
7: elements.php3: 174
uipointer_button_desc (object of type plesk__client__domain__hosting__anonymous_ftp, null, null, string'', array, boolean false)
8: elements.php3: 254
uipointer_button (object of type plesk__client__domain__hosting__anonymous_ftp, null, null, string'', array, boolean false)
9: DashboardElement.php: 1513
DashboardElement_button-> renderHtml (object of type UserDomain, null)
10: DashboardElement.php: 689
DashboardElement-> renderHtml_buttons (array, object of type UserDomain, null)
11: DashboardElement.php: 637
DashboardElement-> renderHtml_common (array, object of type UserDomain, null)
12: DashboardElement.php: 1057
DashboardElement_section-> renderHtml (object of type UserDomain, null)
13: DashboardElement.php: 640
DashboardElement-> renderHtml_common (array, object of type UserDomain, null)
14: DashboardElement.php: 647
DashboardElement-> renderHtml (object of type UserDomain, null)
15: DashboardElement.php: 1013
DashboardElement_column-> renderHtml (object of type UserDomain, null)
16: DashboardElement.php: 654
DashboardElement: renderHtml_columns (array, object of type UserDomain, null)
17: dashboard.php: 251
Dashboard:: renderHtml (DashboardPreset type of object, object of type UserDomain)
18: DashboardForm.php: 164
DashboardForm-> assign (object of type DashboardPreset, object of type UserDomain)
19: DashboardLocation.php: 39
DashboardLocation-> accessit (string 'GET')
20: client.domain.dashboard.php: 22
plesk__client__domain__dashboard-> accessit (string 'GET', null)
21: UIPointer.php: 596
UIPointer-> access (string 'GET')
22: plesk.php: 38

How can I do to fix this error?
 
You have client_id for this domain. Select account_id for this client_id with:

select account_id from clients where id=XXX;
Then insert missing record to accounts table with:

insert into accounts values(YYY,'plain','12345');
where YYY is account_id from previous select.
 
Back
Top