• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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