How to configure phpMyAdmin for multiple users - each with access to their database only

后端 未结 2 1982
谎友^
谎友^ 2021-02-10 03:44

I want to configure phpMyAdmin to be able to accept one of several different user account logins. Each user would be allocated a specific database and only have access to that.<

2条回答
  •  暖寄归人
    2021-02-10 04:18

    use this

      $cfg['Servers'][$i]['auth_type'] = 'cookie';
    

    in place of

      $cfg['Servers'][$i]['auth_type'] = 'config';
    

    in your config.inc.php and restart services then authentication process will start for all users and they can do work according to there grants.

提交回复
热议问题