• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Plesk 9.0.1 MySQL Error Backup Manager after Upgrade

C

Christian Vogt

Guest
Hello, I have a problem with the backup manager.

First I am using Parallels Plesk Panel v9.0.1_build90090127.18 os_Debian 4.0 (Linux 2.6.18-5-amd64).

If I want to create a planned backup, I get the following error report:
MySQL query failed: Unknown column 'backup_time' in 'field list'

I deinstalled the backup manager already and again installed was, so as to read it in some contributions, however, the missing column is not after that available either. Somebody can tell me the MySQL Command, so that I can add the missing column alternative one other solution way's call?

Many thanks

German answers are preferred. ;-)
 
After edititing the Database with:
ALTER TABLE `BackupsScheduled` CHANGE `backup_time` `backup_time` TIME NOT NULL DEFAULT '00:00:00'

I get the next error:
MySQL query failed: Unknown column 'backup_day' in 'field list'

Anyone who can send my a complete dump of the table BackupsScheduled???
 
Everything is cool now. Thx for the PM

--
-- Tabellenstruktur für Tabelle `BackupsScheduled`
--
-- Erzeugt am: 31. März 2009 um 14:35
--

DROP TABLE IF EXISTS `BackupsScheduled`;
CREATE TABLE IF NOT EXISTS `BackupsScheduled` (
`id` int(10) unsigned NOT NULL auto_increment,
`obj_id` int(10) unsigned NOT NULL,
`obj_type` enum('server','reseller','client','domain') NOT NULL,
`repository` enum('local','ftp') NOT NULL default 'local',
`last` datetime default NULL,
`period` int(10) unsigned NOT NULL,
`active` enum('true','false') NOT NULL,
`processed` enum('true','false') NOT NULL,
`rotation` int(11) NOT NULL default '0',
`prefix` varchar(255) character set utf8 default NULL,
`email` varchar(255) character set utf8 default NULL,
`split_size` int(10) unsigned NOT NULL default '0',
`suspend` enum('true','false') NOT NULL default 'false',
`with_content` enum('true','false') NOT NULL default 'true',
`backup_day` int(10) unsigned NOT NULL default '0',
`backup_time` time NOT NULL default '00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
Back
Top