• 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!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

error removing domain

K

kami@

Guest
Hi everybody,
I am having a tough time removing 2 domains on my server.
I am runing plesk 8.2 and when I attempt to remove these 2 domains I get the
following error in Plesk:

Unable to remove domains: Problems occured while removing domains: Table::select() failed: no such row in the table

Could somebody please help me out here as I need to recreate them again>

Thanks in advance
 
Looks like during delete process the domains have been removed from IIS as they do not exist in IIS, but were not deleted from plesk database.

Any help will be greatly appreciated.
 
kami,

It looks like DNS zone is absent for this domain in Plesk database. Please try to restore it with the following queries:

1. insert zone record in psa.dns_zone table:
mysql> INSERT INTO dns_zone SET name='DOMAIN-NAME', displayName='DOMAIN-NAME', email='ADMIN-EMAIL';

2. know new zone ID:
mysql> SELECT id, name FROM dns_zone ORDER BY id DESC LIMIT 1;

3. substitute correct ID into psa.domains table, don't forget to replace DOMAN-NAME and DNS-ZONE-ID with correct values:
mysql> UPDATE domains SET dns_zone_id='DNS-ZONE-ID' WHERE name='DOMAIN-NAME';


Hope this will help.
 
Back
Top