Note that there are some explanatory texts on larger screens.

plurals
  1. POPHPMyAdmin - set global user and password for multiple databases
    primarykey
    data
    text
    <p>I would like do my support database. I have in config.inc.php file information to login to my databases (hosts, logins, passwords).</p> <p>But I would like set global user for all defined databases. So I write global login and password and can manage all my defined database. But I don't know how do it?</p> <p>This is fragment my config.inc.php:</p> <pre><code>/* * Servers configuration */ $i = 0; /* Authentication type */ $i++; $cfg['Servers'][$i]['user'] = 'global user'; $cfg['Servers'][$i]['password'] = 'password global user\'s'; // use here your password $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['AllowNoPassword'] = false; /* Server parameters */ $i++; $cfg['Servers'][$i]['host'] = 'host.frist.database'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['hide_db'] = 'information_schema'; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['AllowNoPassword'] = true; $cfg['Servers'][$i]['user'] = 'user.frist.bazy'; $cfg['Servers'][$i]['password'] = 'password.frist.database'; $i++; $cfg['Servers'][$i]['host'] = 'host.second.database'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['hide_db'] = 'information_schema'; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['AllowNoPassword'] = true; $cfg['Servers'][$i]['user'] = 'user.second.bazy'; $cfg['Servers'][$i]['password'] = 'password.second.database'; </code></pre> <p>I haven't idea, how do it...</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload