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

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