• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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