• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Error: Unable to remove domains after upgrade to 8.6

C

colinjack

Guest
Having upgraded from 7.6.1 to 8.6.0.5 I found loads of missing tables, but have managed to fix most of the problems. I have now got: Error: Unable to remove domains: Problems occured while removing domains: DB query failed: Table 'psa.cf_dsn' doesn't exist ... when I try and delete domains. <groan>

Can anybody help with creating the missing table? I think I will also need to create psa.cf_dsn_parameters?

Thanks

Colin
 
From the error message I suppose that the issue in missed Plesk table 'cf_dsn'. Please check it with the following article: http://kb.odin.com/en/3472. If table is missing, please try to insert it using the followig query:

CREATE TABLE `cf_dsn` (

`id` int(10) unsigned NOT NULL auto_increment,

`domain_id` int(10) unsigned NOT NULL default '0',

`dsn_name` varchar(64) NOT NULL default '',

`driver_name` varchar(255) NOT NULL default '',

`description` varchar(255) default NULL,

`is_valid` enum('false','true') NOT NULL default 'false',

PRIMARY KEY (`id`),

UNIQUE KEY `dsn_name` (`domain_id`,`dsn_name`),

KEY `domain_id` (`domain_id`)

);
 
Thanks Alta. I had already realized that quite a few new tables and fields were missing after the upgrade so loaded a copy of the latest version onto a new macine and then did a table by table comparison. Where I found something missing I did a dump and import ... took ages, but still can't remove the domain because now it won't delete the database :(

I just wish Parallels would provide some decent support with their updates. Everytime I update it breaks.

I think the easiest is going to be to pay them to fix it (as I have had to do in the past).
 
Back
Top