> 数据库 > MySQL >

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


 
  1. 如果 出现 <pre name="code" class="html">mbstring missing  更改  
  2.   
  3. php.ini  增加如下行  

extension=php_mbstring.dll   




 
  1. 找到 config.sample.inc.php 更改为如下:  
  2.  config.inc.php  
  3.   
  4. 以下出错的解决:  
  5. Forbidden  
  6.   
  7. You don't have permission to access /phpMyAdmin/index.php on this server.  
  8.   
  9. 在 httpd-vhosts.conf 文件中加上如下目录 允许访问.  
  10.   
  11. <VirtualHost *:80>  
  12.   
  13. DocumentRoot "D:/phptest"  
  14.   
  15. ServerName 127.0.0.1  
  16.   
  17. <Directory "D:/phptest ">  
  18. Options All  
  19.   
  20. AllowOverride All  
  21.   
  22. Order deny,allow  
  23.   
  24. Allow from All  
  25.   
  26. </Directory>  
  27.   
  28. <Directory "D:/phptest/phpMyAdmin ">  
  29. Options All  
  30.   
  31. AllowOverride All  
  32.   
  33. Order deny,allow  
  34.   
  35. Allow from All  
  36.   
  37. </Directory>  
  38.   
  39. </VirtualHost>  
  40.   
  41.   
  42.  重启一下 apache 并关闭原来的浏览页面. 重新输入  localhost/phpmyadmin/index.php  即可  

(责任编辑:IT)