• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Urgent - Can NOT Delete Client OR Domain ( 7.5.3 or 7.5.4)

W

WebCTRL

Guest
This is the error that we are getting....

Is there anyone who can tell us HOW to fix this?

---------------------------
Microsoft Internet Explorer
---------------------------
Unable to remove domains: Problems occured while removing domains: Unable to remove hosting: SiteAppManager::deleteDomain() failed: SiteAppManager::uninstallSiteApp() failed: SiteAppManager::uninstallSiteAppDelete() failed: Unable to create SiteAppPackage object: siteapppackage: unable to select: no such row in the table.
---------------------------
OK
---------------------------

URgent Help!
 
Hi,

Guess you have not so good 7.5.4 from 7.5.3 update, so you have to update your Plesk database with query:

ALTER TABLE `hosting` ADD COLUMN `ssi_html` enum('false', 'true') NOT NULL
default 'false' AFTER `ssi`;
ALTER TABLE `subdomains` ADD COLUMN `ssi_html` enum('false', 'true') NOT NULL
default 'false' AFTER `ssi`;
ALTER TABLE `web_users` ADD COLUMN `ssi_html` enum('false', 'true') NOT NULL
default 'false' AFTER `ssi`;

I've got it from SW-soft support.
 
well - thanks for the hint...! We got it to work.

The problem was related to Plesk DB was corrupted. For some reasons the applciation vaults table (appsites) indicates that there were applciations installed for the domains and needed to be deleted.

SOOO SOOO of course plesk tries to delete them and failed. I removed the records in this table siteapps that were corresponding to the prblem domains and then use Plesk interface to delete the domains entirely

In Mysql.exe
delete quick form siteapps where id ='x' and dom _id='y";

x = id related to the siteapplication vault (siteapppackages table)
y = domain id of the client ( hosting table)

Thanks !
 
Hello...

This will solve the problem,as I See..
but..

Where's the Plesk DataBase ?
I don't find it...

tks
 
Help me

Hi,
I am with this same problem,
But I am not finding where to arrange that,
Please, does anybody can me to help?
 
---------------------------------------
ERROR:
---------------------------------------

Unable to remove domains: Problems occured while removing domains: Unable to remove hosting: SiteAppManager::deleteDomain() failed: SiteAppManager::uninstallSiteApp() failed: SiteAppManager::uninstallSiteAppDelete() failed: Unable to create SiteAppPackage object: siteapppackage: unable to select: no such row in the table.

---------------------------------------

The domain has siteapps listed in the psa database but no apps are actually installed for the domain.

-------------------------------------------
Solution:
-------------------------------------------

Edit the file for the PSA MySQL instance:
C:\Program Files\SWsoft\Plesk\MySQL\Data\my.ini


Add the following line to the top of the [MySQLD] section:
skip-grant-tables

Restart the MYSQL and PLESK SQL services.

Login at:
cd C:\Program Files\SWsoft\Plesk\MySQL\bin\

mysql.exe -uadmin -P8306

use psa;

Select * from domains where name = "thedomainname.com";

Get the ID# listed in the first column, this is the dom_id#

Select * from siteapps where dom_id = "dom_id#";

Get the id# of all apps in the first column

delete quick from siteapps where id = "x" and dom_id = "y";

x = id related to the siteapplication vault (siteapppackages table)
y = domain id of the client ( hosting table)

Remove the "skip-grant-tables" from my.ini and then restart the MYSQL and PLESK SQL services again.

-----------------------------------------------
 
Back
Top