是啊,加密什么啊?
config.inc.php?

解决方案 »

  1.   

    htpasswd -c [apache/conf] filename username编辑.htaccess文件,放到phpmyadmin或者要加密的文件夹下;AuthName “AuthorUser”
    AuthType Basic
    AuthUserFile [apache/conf/filename]
    require user username编辑http.conf文件<Directory "[网页根目录]">
    Options Indexes FollowSymlinks MulitViews
    AllowOveride All
    ........重起apache, OK请我吃饭
      

  2.   

    自己写一个验证文件pass.php
    然后在config.inc.php里面加上
    include(“config.inc.php”);
    就实现了啊!
      

  3.   

    是不是说登录phpmyadmin需要验证?config.inc.php中改成下面这样:
    $cfg['Servers'][$i]['auth_type']     = 'cookie'; 
      

  4.   

    最好是
    $cfg['Servers'][$i]['auth_type']     = 'http';
      

  5.   

    怎样激活PhpMyAdmin使用链接表的额外特性?
      

  6.   

    $cfg['Servers'][$i]['auth_type']     = 'http';
    APACHE+模块安装的PHP上才能使用
      

  7.   

    用户名和密码是你mysql的root用户名和密码
      

  8.   

    我的mysql用户是:root
    密码是空,但是我输入了不行,为什么呢?
    我用http, cookie都试了