Heim >Datenbank >MySQL-Tutorial >You don't have permission to access /phpmyadmin/ on

You don't have permission to access /phpmyadmin/ on

WBOY
WBOYOriginal
2016-06-07 15:50:101049Durchsuche

配置phpmyadmin 配了一个小时都没好 无论是在127.0.0.1下或者是 localhost下都无法登陆. 后来发现在wmap环境下配置phpmyadmin 单单修改libraries下的 config.default.php是不行的 正确的步骤应该是: 一:配置libraries下的config.default.php $cfg['PmaAbso

配置phpmyadmin 配了一个小时都没好 无论是在127.0.0.1下或者是 localhost下都无法登陆.

后来发现在wmap环境下配置phpmyadmin 单单修改libraries下的config.default.php是不行的

正确的步骤应该是:

一:配置libraries下的config.default.php

$cfg['PmaAbsoluteUri'] = 'localhost/phpmyadmin';   // "中间填写phpmyadmin的访问网址 

$cfg['Servers'][$i]['user'] = 'root'; // MySQL user 访问phpmyadmin使用的mysql用户名 

fg['Servers'][$i]['password'] = ''; // MySQL password (only needed对应上述mysql用户名的密码

$cfg['Servers'][$i]['auth_type'] = 'cookie';

二:配置apps\phpmyadim\config.inc.php文件

$cfg['Servers'][$i]['password'] = 'hooray';  // hooray 就是你数据库的密码。

此时在127.0.0.1下已经能打开phpmyadmin了 不过在localhost下还是不能打开

三:配置alias下的phpmyadmin.conf

    Deny from all

    Allow from 127.0.0.1 

修改为

  Allow from all

至此在wmap环境下的phpmyadmin配置大功告成




Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn