phpMyAdmin You don't have permission to access /phpMyAdmin/index.php on this server. 解决

如果 出现 <pre name="code" class="html">mbstring missing  更改

php.ini  增加如下行

extension=php_mbstring.dll  

 
 

找到 config.sample.inc.php 更改为如下:
 config.inc.php

以下出错的解决:
Forbidden

You don't have permission to access /phpMyAdmin/index.php on this server.

在 httpd-vhosts.conf 文件中加上如下目录 允许访问.

<VirtualHost *:80>

DocumentRoot "D:/phptest"

ServerName 127.0.0.1

<Directory "D:/phptest ">
Options All

AllowOverride All

Order deny,allow

Allow from All

</Directory>

<Directory "D:/phptest/phpMyAdmin ">
Options All

AllowOverride All

Order deny,allow

Allow from All

</Directory>

</VirtualHost>


 重启一下 apache 并关闭原来的浏览页面. 重新输入  localhost/phpmyadmin/index.php  即可






你可能感兴趣的:(phpMyAdmin You don't have permission to access /phpMyAdmin/index.php on this server. 解决)