Complete docs for controuser/controlpass.

This commit is contained in:
Michal Čihař
2008-06-02 13:21:47 +00:00
parent efc4f5a9ba
commit 1e29fc466e

View File

@@ -47,7 +47,7 @@ $cfg['PmaAbsoluteUri'] = '';
$cfg['PmaNoRelation_DisableWarning'] = false; $cfg['PmaNoRelation_DisableWarning'] = false;
/** /**
* Disable the default warning that is displayed if Suhosin is detected * Disable the default warning that is displayed if Suhosin is detected
* *
* @global boolean $cfg['SuhosinDisableWarning'] * @global boolean $cfg['SuhosinDisableWarning']
*/ */
@@ -130,12 +130,15 @@ $cfg['Servers'][$i]['compress'] = false;
/** /**
* MySQL control user settings (this user must have read-only * MySQL control user settings (this user must have read-only
* access to the "mysql/user" and "mysql/db" tables). The controluser is also
* used for all relational features (pmadb)
* *
* @global string $cfg['Servers'][$i]['controluser'] * @global string $cfg['Servers'][$i]['controluser']
*/ */
$cfg['Servers'][$i]['controluser'] = ''; $cfg['Servers'][$i]['controluser'] = '';
/** /**
* MySQL control user settings (this user must have read-only
* access to the "mysql/user" and "mysql/db" tables). The controluser is also * access to the "mysql/user" and "mysql/db" tables). The controluser is also
* used for all relational features (pmadb) * used for all relational features (pmadb)
* *
@@ -341,22 +344,22 @@ $cfg['Servers'][$i]['AllowDeny']['rules'] = array();
* by default most user will be fine with SHOW DATABASES, * by default most user will be fine with SHOW DATABASES,
* for servers with a huge amount of databases it is possible to * for servers with a huge amount of databases it is possible to
* define a command which executes faster but with less information * define a command which executes faster but with less information
* *
* especially when accessing database servers from ISPs changing this command * especially when accessing database servers from ISPs changing this command
* can result in a great speed improvement * can result in a great speed improvement
* *
* false will disable fetching databases from the server, only databases in * false will disable fetching databases from the server, only databases in
* $cfg['Servers'][$i]['only_db'] will be displayed * $cfg['Servers'][$i]['only_db'] will be displayed
* *
* #user# will be replaced by current user * #user# will be replaced by current user
* *
* examples: * examples:
* 'SHOW DATABASES' * 'SHOW DATABASES'
* "SHOW DATABASES LIKE '#user#\_%'" * "SHOW DATABASES LIKE '#user#\_%'"
* 'SELECT DISTINCT TABLE_SCHEMA FROM information_schema.SCHEMA_PRIVILEGES' * 'SELECT DISTINCT TABLE_SCHEMA FROM information_schema.SCHEMA_PRIVILEGES'
* 'SELECT SCHEMA_NAME FROM information_schema.SCHEMATA' * 'SELECT SCHEMA_NAME FROM information_schema.SCHEMATA'
* false * false
* *
* @global array $cfg['Servers'][$i]['ShowDatabasesCommand'] * @global array $cfg['Servers'][$i]['ShowDatabasesCommand']
*/ */
$cfg['Servers'][$i]['ShowDatabasesCommand'] = 'SHOW DATABASES'; $cfg['Servers'][$i]['ShowDatabasesCommand'] = 'SHOW DATABASES';