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

Error removing client?

K

kinetix

Guest
Hi all,
I have very bad problem.
When try to remove at all Clients and it's domain, and confirmed in Plesk I get error message.
Now Client is still in my Plesk. Domain is not with active hosting and is not in my IIS.
But, I can't remove it at all, because every time when try it, i see :
Error: Unable to remove domains: Problems occured while removing domains: Table::select() failed: no such row in the table

I try this article: http://kb.swsoft.com/en/1756

but is not helping me, because files from article was alredy there. My Plesk version is 8.2
I don't know what to do it?
Any ideas?
 
Most probably the are just missing records o\in psa.dns_zone table. Please check the following:

> SELECT * FROM psa.dns_zone where name = 'domain.tld';

if this returns null, you need to add the record manually, i.e.:

> INSERT INTO psa.dns_zone (name, displayName) VALUES ('domain.tld', 'domain.tld');

Then you should be able to remove Client/Domain.
 
Back
Top