• 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.

Database Error after Upgrade to PHP5.2

T

teddy

Guest
Hello,

im updated php 5.1.6 on CentOS 5.4 to php.5.2.13
now all existent databases, websites e.g. works correctly

but i have an error on the plesk - admin panel.
when i will make a change (e.g. adminpassword, create a new mysql database or user or change a mysqlpassword) a have an error "Table 'mysql.servers' doesn't exist"

also a directly access to the mysql databases from the start-page on the plesk panel doesn´t works.

How is the problem - what can i do to fix this.

I think other applications have also a problem with the access - i will test it.

Thanx for help
 
Fixed

Hi

the Problem is fixed.

now - the error "mysql.server doesn´t exist" is not a bug in plesk.
i updated php 5 with the atomicorp repo.
wget -q -O - http://www.atomicorp.com/installers/atomic |sh

now i updated also mysql with yum update and in this version ( 5.1.48-1.el5.art ) the mysql server use a table "server" in the database "mysql"

i fixed this with

CREATE TABLE `servers` (
`Server_name` char(64) NOT NULL,
`Host` char(64) NOT NULL,
`Db` char(64) NOT NULL,
`Username` char(64) NOT NULL,
`Password` char(64) NOT NULL,
`Port` int(4) DEFAULT NULL,
`Socket` char(64) DEFAULT NULL,
`Wrapper` char(64) NOT NULL,
`Owner` char(64) NOT NULL,
PRIMARY KEY (`Server_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COMMENT='MySQL Foreign Servers table';



restart the mysql server - and it works.
 
Back
Top