• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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