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


如果 出现 
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 文件中加上如下目录 允许访问.



DocumentRoot "D:/phptest"

ServerName 127.0.0.1


Options All

AllowOverride All

Order deny,allow

Allow from All




Options All

AllowOverride All

Order deny,allow

Allow from All






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






你可能感兴趣的:(DotNet_C#)