0

我正在尝试在 xampp 中打开 phpmyadmin 页面..但我被困在一个地方..当我试图打开页面时

http://localhost/phpmyadmin/ 

它给了我以下错误:

在此处输入图像描述

但是当我打开时

https://localhost/phpmyadmin/ 

它打开成功..我检查了它具有以下设置的 config.inc.php 文件..

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type']            = 'config';
$cfg['Servers'][$i]['user']                 = 'root';
$cfg['Servers'][$i]['password']             = '';
$cfg['Servers'][$i]['AllowNoPassword']      = true;

有谁知道可能是什么问题..我几乎尝试了所有方法并继续这样做..已经两天了..

提前致谢..

4

3 回答 3

0

您可以查看以下 2 个文档链接来解决您的问题

只是去扔这个链接,你肯定可以解决你的问题

http://www.michaelbarton.name/2009/12/13/forcing-ssl-with-phpmyadmin/

// place this at the bottom somewhere
$cfg['ForceSSL'] = false;

也请在下面查看

http://docs.phpmyadmin.net/en/latest/config.html

于 2013-08-17T10:11:24.807 回答
0

检查你的config.inc.php文件

默认情况下应该包含这样的内容:

$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
于 2013-08-17T10:26:12.153 回答
-1

无论如何,https使它比http更安全,所以你最好在它工作的时候使用它

于 2013-08-20T14:42:57.880 回答