请注意./libraries/dbi/DBIMysqli.class.php#522

时间:2018-08-19 08:48:19

标签: php mysql phpmyadmin

我刚刚安装了MySQL 服务器版本:5.7.23-0ubuntu0.16.04.1-(Ubuntu)和phpMyAdmin 版本信息:4.5.4.1deb2ubuntu2 当我通过phpMyAdmin访问数据库时,它显示警告消息

  

./ libraries / dbi / DBIMysqli.class.php#522中的通知

有人可以帮忙吗?

enter image description here

2 个答案:

答案 0 :(得分:2)

您只需要在文件./libraries/dbi/DBIMysqli.class.php中添加一件事。下面是添加第522行的代码

添加固定代码之前

enter image description here

添加固定代码后

enter image description here

我认为这将帮助您解决该错误消息问题。

答案 1 :(得分:1)

打开 DBIMysqli.class.php 文件。

/usr/share/phpmyadmin/libraries/dbi/DBIMysqli.class.php

然后转到行号: 522

  

在替换此行代码之前

  $fields[$k]->type =  $typeAr[$field->type];
  

替换此行后

$fields[$k]->type = isset($typeAr[$field->type]) ? $typeAr[$field->type] : null;