phpMyAdmin-2.3.0似乎带有这个功能。需要设置。

解决方案 »

  1.   

    config.inc.php
    $cfg['Servers'][$i]['auth_type']     = 'config';    //Authentication method (config, http or cookie based)?
    改成
    $cfg['Servers'][$i]['auth_type']     = 'http';
      

  2.   

    偶是这样改的.不过还是有些问题.
    比如用户设置是:一个本地用户 主机设为localhost,权限满,有passwd
    一个远程用户,主机设为%,权限满,有passwd
    但是auth-type改成http之后,访问index.php有登录验证的对话框出现但是用户名和密码随便怎么输都不对...
    高手指教.
      

  3.   

    版本是2.3.1的phpmyadmin,系统2k server.
      

  4.   

    设完用户后要重启mysql server
      

  5.   

    对了,你在设password时选没选PASSWORD()这个函数?
    也就是你看到数据表中的password是不是明码?
    应但是加密后的数据才行的
    insert a new value时
    在password项前有一个下拉菜单,里面有PASSWORD一项
      

  6.   

    config.inc.php$cfg['Servers'][$i]['auth_type']     = 'config';    //Authentication method (config, http or cookie based)?
    改成
    $cfg['Servers'][$i]['auth_type']     = 'cookie';