diff --git a/ChangeLog b/ChangeLog index 0b6cadb01..a35f0ed90 100755 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ $Source$ 2001-05-15 Marc Delisle * support key length in table copy/dump + * doc. changes for Loïc 2001-05-15 Armel Fauveau * Added "Bookmarked SQL-query" combo box when you click on a table (Feature #423065) diff --git a/Documentation.html b/Documentation.html index d3900e642..7aa998d56 100755 --- a/Documentation.html +++ b/Documentation.html @@ -25,8 +25,12 @@ h2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:large; font-w

phpMyAdmin 2.x.x- Documentation

-

http://www.htmlwizard.net/phpMyAdmin/
- Tobias Ratschiller

+

This project is currently an unofficial continuation of + Tobias Ratschiller's work. It has not + been (at least not yet :-) accepted as an official continuation: we are still waiting + for an answer from Tobias.

+

Official phpMyAdmin project homepage
+ "Unofficial" phpMyAdmin project homepage

Version history: ChangeLog
Installation instructions: INSTALL
General notes: README

@@ -39,10 +43,10 @@ h2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:large; font-w first server, $cfgServers[2]['host'] the hostname of the second server, etc. If you have only one server to administer, simply leave free the hostname of the other $cfgServer-entries. -

$cfgServers[n]['port'] string
- The port-number of your n-th MySQL-server. Default is 3300 (leave blank).

$cfgServers[n]['host'] string
The hostname of your n-th MySQL-server. E.g. localhost.

+

$cfgServers[n]['port'] string
+ The port-number of your n-th MySQL-server. Default is 3300 (leave blank).

$cfgServers[n]['adv_auth'] boolean
Whether basic or advanced authentication should be used for this server. Basic authentication ($adv_auth = false) is the plain old way: username and password @@ -60,15 +64,15 @@ h2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:large; font-w

Advanced authentication is secure as the standard user needs just read-only-access to the mysql database. MySQL passwords cannot be decrypted easily, so there's no chance for a normal user to look at other users' plaintext passwords.

-

$cfgServers[n]['user'] string
- $cfgServers[n]['password'] string
- The user/password-pair which phpMyAdmin will use to connect to this MySQL-server - when using basic authentification. Not needed when using advanced authentification.

$cfgServers[n]['stduser'] string
$cfgServers[n]['stdpass'] string
A user/pasword pair used to verify the real user/password pair when using advanced authentification. This user must be able to connect to MySQL and read the mysql user table. Not needed when using basic authentification.

+

$cfgServers[n]['user'] string
+ $cfgServers[n]['password'] string
+ The user/password-pair which phpMyAdmin will use to connect to this MySQL-server + when using basic authentification. Not needed when using advanced authentification.

$cfgServers[n]['only_db'] string
If set to a database name, only this database will be shown to the user.

$cfgServers[n]['verbose'] string
@@ -77,20 +81,38 @@ h2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:large; font-w main page. This can be useful if you want to show only certain databases on your system, for example.

+

$cfgServers[n]['bookmarkdb'] string
+ $cfgServers[n]['bookmarktable'] string
+ Since release 2.3.0 phpMyAdmin allows to bookmark queries. This can be useful for queries + you often run. To use this functionality you have to:

+ +

$cfgServerDefault integer
+ If you have more than one server configured, you can set $cfgServerDefault to any one of + them to autoconnect to that server when phpMyAdmin is started, or set it to 0 to be given + a list of servers without logging in. + If you have only one server configured, $cfgServerDefault MUST be set to that server. +

+

$cfgManualBase string
If set to an URL which points to the MySQL documentation, appropriate help links are generated.

-

$cfgPersistentConnections boolean
- Whether persistent connections should be used or not (mysql_connect or mysql_pconnect).

$cfgConfirm boolean
Whether a warning ("Are your really sure..") should be displayed when you're about to loose data.

-

$cfgMaxRows integer
- Number of rows displayed when browsing a resultset. If the resultset contains - more rows, Previous/Next links will be shown.

-

$cfgMaxInputsize integer
- Size of the edit-field when adding a new record to a table.

+

$cfgPersistentConnections boolean
+ Whether persistent connections should be used or not (mysql_connect or mysql_pconnect).

$cfgBorder integer
The size of a table's border.

$cfgThBgcolor string [HTML color]
@@ -99,6 +121,11 @@ are generated.
The color (HTML) #1 for table rows.

$cfgBgcolorTwo string [HTML color]
The color (HTML) #2 for table rows.

+

$cfgMaxRows integer
+ Number of rows displayed when browsing a resultset. If the resultset contains + more rows, Previous/Next links will be shown.

+

$cfgMaxInputsize integer
+ Size of the edit-field when adding a new record to a table.

$cfgOrder string ["DESC"|"ASC"]
Defines whether fields are displayed in ascending ("ASC") order or in descending ("DESC") order when you click on the field-name. @@ -106,6 +133,19 @@ are generated.
Defines whether BLOB fields are shown when browsing a table's content or not.

$cfgShowSQL boolean
Defines whether sql-queries generated by phpMyAdmin should be displayed or not. +

$cfgModifyDeleteAtLeft boolean
+ $cfgModifyDeleteAtRight boolean
+ Defines the place where modify and delete links would be put when tables contents are + displayed (you may have them displayed both at the left and at the right).
+

+ +

$cfgDefaultLang string
+ Defines the default language to use, if not browser-defined or user-defined.
+ See the select_lang.inc.php3 script to know the valid values for this setting.

+

$cfgLang string
+ Force: always use this language (must be defined in the select_lang.inc.php3 script).
+

+

$cfgColumnTypes array
All possible types of a MySQL column. In most cases you don't need to edit this.

$cfgFunctions array
diff --git a/INSTALL b/INSTALL index f3a1c00d4..c79569bb9 100755 --- a/INSTALL +++ b/INSTALL @@ -32,10 +32,6 @@ phpMyAdmin - Installation You can get an overview of Apache's authentification methods at http://www.apacheweek.com/features/userauth . Another tutorial is at http://deepthought.texsci.edu/protected_dirs.html - + PHP3 should be configured to have magic_quotes=on. In the module - version of PHP3 this can also be set on a per-directory base with - php3_magic_quotes_gpc on in an .htaccess file or in your Apache's - access.conf. + If you don't use the extension ".php3" for your scripts, you can use the bundled script "extchg.sh" to modify phpMyAdmin (or any other script) to work with a different extension. Beware though, that currently changing