请仔细看一看MySQL的Manual里面权限部分内容

解决方案 »

  1.   

    请问在什么地方看呀?
    我没找到?
    我用的是IIS+MYSQL
      

  2.   

    本人的经历:(这次说什么也得进faq了!!!)http://expert.csdn.net/Expert/topic/2393/2393106.xml?temp=7.256716E-02
      

  3.   

    你先
    $cfg['Servers'][$i]['user'] = 'root'; 
    $cfg['Servers'][$i]['password'] = '';
    试试
      

  4.   

    phpMyAdmin的设置问题,我是一点都不懂呀
    可我一安装上去,它自己什么都跟我通了!!呵呵
      

  5.   

    $cfg['Servers'][$i]['host'] = 'localhost';
      

  6.   

    1. $cfg['Servers'][$i]['host'] = 'localhost';
    2. $cfg['Servers'][$i]['auth_type'] = 'config'; 这行最好改为
       $cfg['Servers'][$i]['auth_type'] = 'cookie'; 这样会出现登陆框让你输入密码,更加安全,即使phpmyadmin的地址被人发现也不要紧。
    3. 在2设定为 cookie后 ,
    cfg['Servers'][$i]['user'] = 'chris'; 
    $cfg['Servers'][$i]['password'] = '123456';
    这两行都不用改,就是
    cfg['Servers'][$i]['user'] = ''; 
    $cfg['Servers'][$i]['password'] = '';
    这样就可以了4. $cfg['PmaAbsoluteUri'] 需要设定,设定的值就是你的phpmyadmin的访问地址,这个也是
    为了安全而在较新版本的phpmyadmin都有的,例如你的phpmyadmin的访问地址是
    http://myhost/phpMyAdmin   
    就把这个设定为这个值