>> http://域名/phpmyadmin
你把phpmyadmin 放到了 wwwroot/phpmyadmin/ 里了吗??这样呢?http://域名/phpmyadmin/检查大小写~~~

解决方案 »

  1.   

    估计是最后没有/的原因了。
    你的web服务器是用了什么?如果是apache,那么可以做个alias,把/phpmyadmin 设成/phpadmin/的别名。
      

  2.   

    你的
      $cfgPmaAbsoluteUri = 
      有没有设置呀,上次我就是这个原因的
      

  3.   

    config.inc.php---------$cfgServers[1]['host']          = 'localhost'; // MySQL hostname
    $cfgServers[1]['port']          = '';          // MySQL port - leave blank for default port
    $cfgServers[1]['socket']        = '';          // Path to the socket - leave blank for default socket
    $cfgServers[1]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')
    $cfgServers[1]['adv_auth']      = FALSE;       // Use advanced authentication?
    $cfgServers[1]['stduser']       = '1XXXXXX';          // MySQL standard user (only needed with advanced auth)
    $cfgServers[1]['stdpass']       = '5XXXXXX';          // MySQL standard password (only needed with advanced auth)
    $cfgServers[1]['user']          = '2XXXXXXXXX';     // MySQL user (only needed with basic auth)
    $cfgServers[1]['password']      = '3XXXXXXXXXXX';          // MySQL password (only needed with basic auth)
    $cfgServers[1]['only_db']       = '4XXXXXXXXXX';          // If set to a db-name, only this db is accessible-------1XXXXXXXXXX为mysql登录用户名用户名+5XXXX密码
    --------2XXXXXXXXXX +3XXXXXXXXXX为库的用户名和密码
    4XXXXXXXXXXXX为库名