diff --git a/ChangeLog b/ChangeLog index 30dfec29f..59e8a7b07 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2004-07-23 Marc Delisle + * Documentation.html: take into account the new script to + create tables for the infrastructure + 2004-07-23 Alexander M. Turek * config.inc.php, libraries/config_import.lib.php, libraries/select_lang.lib.php: Made phpMyAdmin aware that there is a diff --git a/Documentation.html b/Documentation.html index 76bca8dec..d0beab8c6 100755 --- a/Documentation.html +++ b/Documentation.html @@ -165,18 +165,32 @@ in your browser. phpMyAdmin should now display a welcome screen and your databases, or a login dialog if using HTTP or cookie authentication mode. -
  • For a whole set of new features (bookmarks, comments, SQL-history, PDF-generation, field contents transformation, etc.) - you need to create a set of tables in your database. Please look at your scripts/ + + +

    Linked-tables infrastructure

    +

    + For a whole set of new features (bookmarks, comments, SQL-history, + PDF-generation, field contents transformation, etc.) + you need to create a set of special tables. Those tables can be located + in your own database, or in a central database for a multi-user + installation (this database would then be accessed by the controluser, + so no other user should have rights to it). +

    + Please look at your scripts/ directory, where you should find a file called create_tables.sql. (If you are using a Windows server, pay special attention to FAQ 1.23). If your MySQL server's version is 4.1.2 or later, please use create_tables_mysql_4_1_2+.sql instead. You can already use your phpMyAdmin to create the tables for you. Please be - aware that you may have to have special (administrator) privileges to create - the database and tables. After having imported the create_tables.sql file, - you should specify the table names in your config.inc.php file. The directives - used for that can be found in the Configuration section.

  • - - + aware that you may need special (administrator) privileges to create + the database and tables, and that the script may need some tuning, + depending on the database name. +

    + After having imported the create_tables.sql file, + you should specify the table names in your config.inc.php file. The directives + used for that can be found in the Configuration section. + You will also need to have a controluser with the proper rights to + those tables (see section Using authentication modes below). +

    Upgrading from an older version