我真的很难在debian喘息时修复这些错误。
mysql_connect():头和客户端库次要版本不匹配。标题:50531库:50613 core.php,第317行
在升级到php 5.4、ioncube loaders 4.4.3、xcache 3.0.3和percona 5.6之后,问题在今天出现了很长一段时间。
到目前为止,在我试图解决这个问题的过程中,我试过。。。
卸载php(包括清除安装文件)
降级到php 5.3,然后重新升级
降级回percona 5.5,升级回
卸载ioncube头
卸载xcache
不幸的是,这些都没有帮助。。。
--
第317行以:

 $link = $this->

  /**
    * Initialize database connection(s)
    *
    * Connects to the specified master database server, and also to the slave server if it is specified
    *
    * @param        string  Name of the database server - should be either 'localhost' or an IP address
    * @param        integer Port of the database server (usually 3306)
    * @param        string  Username to connect to the database server
    * @param        string  Password associated with the username for the database server
    * @param        boolean Whether or not to use persistent connections to the database server
    * @param        string  Not applicable; config file for MySQLi only
    * @param        string  Force connection character set (to prevent collation errors)
    *
    * @return       boolean
    */
    function db_connect($servername, $port, $username, $password, $usepconnect, $configfile = '', $charset = '')
    {
            if (function_exists('catch_db_error'))
            {
                    set_error_handler('catch_db_error');
            }

            // catch_db_error will handle exiting, no infinite loop here
            do
            {
                    $link = $this->functions[$usepconnect ? 'pconnect' : 'connect']("$servername:$port", $username, $password);
            }
            while ($link == false AND $this->reporterror);

            restore_error_handler();

            if (!empty($charset))
            {
                    if (function_exists('mysql_set_charset'))
                    {
                            mysql_set_charset($charset);
                    }
                    else
                    {
                            $this->sql = "SET NAMES $charset";
                            $this->execute_query(true, $link);
                    }
            }

            return $link;
    }

最佳答案

当我最近把我的ubuntu服务器升级到13.04的时候我也遇到了同样的问题无论如何这只是一个来自libmysqlclient的警告我还有mariadb,你可以使用php5-mysqlnd而不是php5-mysql这个为我修复了它。

sudo apt-get remove php5-mysql

sudo apt-get install php5-mysqlnd

09-08 04:08