diff --git a/ChangeLog b/ChangeLog index 76cefbde6..b2066b4cb 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,9 +5,12 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-10-15 Alexander M. Turek + * Documentation.html: FAQ entry about browser charset settings. + 2002-10-15 Marc Delisle - * libraries/auth/cookie.auth.lib.php3: let them use a blank password, - thanks to Juliano Ravasi Ferraz (jferraz) + * libraries/auth/cookie.auth.lib.php3: let them use a blank password, + thanks to Juliano Ravasi Ferraz (jferraz) * main.php3: extend the warning about blank root password to all auth modes 2002-10-14 Alexander M. Turek diff --git a/Documentation.html b/Documentation.html index 70a81da9b..6d92ec1d7 100755 --- a/Documentation.html +++ b/Documentation.html @@ -230,8 +230,8 @@

Quick Install:

    -
  1. Choose and download a distribution kit with the files having the - extension (.php3 or .php) depending on the way your +
  2. Choose and download a distribution kit with the files having the + extension (.php3 or .php) depending on the way your web/PHP server interprets those extensions.
  3. Untar or unzip the distribution (be sure to unzip the subdirectories): tar xzvf phpMyAdmin_x.x.x.tar.gz in your webserver's @@ -452,7 +452,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
    $cfg['PmaNoRelation_DisableWarning'] boolean
    Starting with version 2.3.0 phpMyAdmin offers a lot of features to work - with master / foreign - tables (see + with master / foreign - tables (see $cfg['Servers'][$i]['pmadb']).
    If you tried to set this up and it does not work for you, have a look on @@ -610,9 +610,9 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' to work with master / foreign - tables. To use those as well as the bookmark feature you need special tables with a predefined structure, which we explain below.
    - If you are the only user of this phpMyAdmin installation, you can + If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this - case, just put your current database name in + case, just put your current database name in $cfg['Servers'][$i]['pmadb'].

    If you are setting up a multi-user phpMyAdmin installation, @@ -624,10 +624,10 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' create a new database for phpmyadmin:
      CREATE DATABASE phpmyadmin;
    Note that "controluser" must have - SELECT, INSERT, UPDATE and DELETE - privileges on this database. Here is a query to set up - those privileges (using "phpmyadmin" - as the database name, and "pma" as the + SELECT, INSERT, UPDATE and DELETE + privileges on this database. Here is a query to set up + those privileges (using "phpmyadmin" + as the database name, and "pma" as the controluser):
      GRANT SELECT,INSERT,UPDATE,DELETE ON phpmyadmin.* to 'pma'@'localhost'; @@ -2147,6 +2147,16 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' version, we cannot workaround this bug.

    +

    + [5.11] Extended-ASCII characters like German umlauts are displayed + wrong. +
    + Please ensure that you have set your browser's charset to the one of the + language file you have selected on phpMyAdmin's start page. + Alternatively, you can try the auto detection mode that is supported by the + recent versions of the most browsers. +

    +

    [6. Using phpMyAdmin]