• 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

Upgrade from 11.0.9 to 12.0.8 problem

Dragomir

New Pleskian
Hello all,

I cant upgrade my plesk version 11.0.9 to version 12.0.8
I got this problem:
"
ERROR while trying to execute SQL query, the query was: INSERT INTO ServiceInstallations (name, status, serviceNodeId) values ('PleskDns', 1, 1)"

Can somebody help me?

Thank you.
 
Try to create this table manually with following SQL query:

CREATE TABLE `ServiceInstallations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`status` int(10) unsigned NOT NULL DEFAULT '0',
`serviceNodeId` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`,`serviceNodeId`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
 
Back
Top