From 7d15d6e7e727e249907d04e2caa2bf02e80611ed Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 3 Feb 2004 18:17:28 +0000 Subject: [PATCH] doc clarification and typos --- Documentation.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Documentation.html b/Documentation.html index 7c481e413..7f62c560e 100755 --- a/Documentation.html +++ b/Documentation.html @@ -239,8 +239,8 @@ GRANT SELECT ON mysql.host TO 'pma'@'localhost'; GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv) ON mysql.tables_priv TO 'pma'@'localhost'; - If you are using an old MySQL version (below 4.0.2), please use this - query instead of the second one: + If you are using an old MySQL version (below 4.0.2), please replace + the first GRANT SELECT query by this one:
 
 GRANT SELECT (
@@ -294,7 +294,7 @@ GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';
         authentication (for example, if you're running IIS).
     
     
  • Obviously, the user must enable cookies in the browser.
  • -
  • With this mode, the use can truly logout of phpMyAdmin and login back +
  • With this mode, the user can truly logout of phpMyAdmin and login back with the same username.
  • If you want to login to arbitrary server see $cfg['AllowArbitraryServer'] directive.
  • @@ -494,7 +494,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' login.
    Please see the install section on - "Using HTTP authentication" for more information. + "Using authentication modes" for more information.

    Note that if you try login to phpMyAdmin with this "controluser", you could get some errors, depending the exact @@ -558,7 +558,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' ("_" and "%"): if you want to use literal instances of these characters, escape them (I.E. use 'my\_db' and not 'my_db').
    - This setting is an efficient way to lower the server charge since the + This setting is an efficient way to lower the server load since the latter does not need to send MySQL requests to build the available database list. But it does not replace the privileges rules of the MySQL database server. If set, it just @@ -570,7 +570,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'

    As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the databases in the left frame, so that you can individually arrange your databases.
    - If you want to have certain tables at the top, but don't care about the others, you do not + If you want to have certain databases at the top, but don't care about the others, you do not need to specify all other databases. Use: $cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*'); instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic @@ -730,7 +730,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' "Structure/Relation view/" and choose foreign fields.
    - Please note that in the current (2.3.0) version, master_db + Please note that in the current version, master_db must be the same as foreign_db. Those fields have been put in future development of the cross-db relations.