为了账号安全,请及时绑定邮箱和手机立即绑定

安装bugfree时,提示Mysql未安装,找了网上的方法更改代码,但是还没有得到解决,怎么办?

问题出现在bugfree安装检查环境时,一直提示未安装mysql。 小编百思不得其姐,  最后发现问题出现在xampp安装的时最新的php7.x。 7.x在原来代码的基础上移除了部分mysql的方法 所以检测一直mysql不存在

 所以我们需要去修改bugfree的源代码,方法如下:

修改:

bugfree\install\func.inc.php 中的checkMysql方法:

源代码:

function checkMysql()
{
    if(function_exists("mysql_get_client_info"))
    {
        $versionInfo = mysql_get_client_info();
        preg_match('/[^\d]*([\d\.]+)[^\d]*/', $versionInfo, $version);
        $version = isset($version[1]) ? $version[1] : $versionInfo;
        return version_compare($version, '5.0', '>=');
    }
    return t('bugfree', 'Not Install');
}

 

修改后的代码:

 

function checkMysql()
{
    if(function_exists("mysqli_get_server_info"))
        {

                    $test = new mysqli("127.0.0.1", "root", "", "mysql");
                    if(!$test)  {
                                    echo"database error";
                    }else{
                                    echo"php env successful \n";
                                    $versionInfo = mysqli_get_server_info($test);
                                    printf("Server version: %s\n", mysqli_get_server_info($test));
                                    preg_match('/[^\d]*([\d\.]+)[^\d]*/', $versionInfo, $version);
                                    print_r($version);
                                    $version = isset($version[1]) ? $version[1] : $versionInfo;
                                    $test->close();
                                    return version_compare($version, '5.0', '>=');
                    }

        }
    return t('bugfree', 'Not Install');
}

 

还需要将上诉文件中:mysql_get_client_info()改为mysql_get_client_info()   刷新页面即可

https://img1.sycdn.imooc.com//5bf6689c0001cf7824080634.jpg

按照上述方法后,刷新还是一样的界面

正在回答

1 回答

查看下xampp的版本,最好装回5.6.30的问题就解决了

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

安装bugfree时,提示Mysql未安装,找了网上的方法更改代码,但是还没有得到解决,怎么办?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信