This commit is contained in:
Olivier Müller
2001-08-08 16:23:56 +00:00
parent 34da793c52
commit 71ce97775b

View File

@@ -11,8 +11,8 @@
+ General notes: [5]README + General notes: [5]README
+ Credits information: [6]CREDITS + Credits information: [6]CREDITS
+ License: [7]LICENSE + License: [7]LICENSE
* Documentation version: $Id: Documentation.html,v 1.35 2001/08/02 * Documentation version: $Id: Documentation.html,v 1.39 2001/08/08
19:47:58 gandon Exp $ 16:22:26 swix Exp $
______________________________________________________________________ ______________________________________________________________________
[8]Top - [9]Requirements - [10]Introduction - [11]Installation [8]Top - [9]Requirements - [10]Introduction - [11]Installation
@@ -88,11 +88,11 @@ Installation
overview of Apache's authentification methods at: overview of Apache's authentification methods at:
[32]http://www.apacheweek.com/features/userauth [32]http://www.apacheweek.com/features/userauth
* If you don't use the extension ".php3" for your scripts, you can * If you don't use the extension ".php3" for your scripts, you can
use the bundled script extchg.sh to modify phpMyAdmin (or any use the bundled script scripts/extchg.sh to modify phpMyAdmin (or
other script) to work with a different extension. Beware though, any other script) to work with a different extension. Beware
that currently changing the extension from .html to something though, that currently changing the extension from .html to
other won't work (it'd change all "string".htmlspecialchars() something other won't work (it'd change all
constructs). "string".htmlspecialchars() constructs).
Upgrading from an older version: Upgrading from an older version:
* Please do not copy your older config.inc.php3 over the new one: it * Please do not copy your older config.inc.php3 over the new one: it
@@ -202,10 +202,6 @@ Configuration
If you have only one server configured, $cfgServerDefault MUST If you have only one server configured, $cfgServerDefault MUST
be set to that server. be set to that server.
$cfgManualBase string
If set to an URL which points to the MySQL documentation,
appropriate help links are generated.
$cfgConfirm boolean $cfgConfirm boolean
Whether a warning ("Are your really sure..") should be Whether a warning ("Are your really sure..") should be
displayed when you're about to loose data. displayed when you're about to loose data.
@@ -214,6 +210,55 @@ Configuration
Whether persistent connections should be used or not Whether persistent connections should be used or not
(mysql_connect or mysql_pconnect). (mysql_connect or mysql_pconnect).
$cfgShowBlob boolean
Defines whether BLOB fields are shown when browsing a table's
content or not.
$cfgProtectBlob boolean
Defines whether BLOB fields are protected from edition when
browsing a table's content or not.
$cfgShowSQL boolean
Defines whether sql-queries generated by phpMyAdmin should be
displayed or not.
$cfgSkipLockedTables boolean
Mark used tables and make it possible to show databases with
locked tables (since 3.23.30).
$cfgMaxRows integer
Number of rows displayed when browsing a resultset. If the
resultset contains more rows, Previous/Next links will be
shown.
$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.
$cfgOBGzip boolean
Defines whether to use gzip output buffering for increased
speed in HTTP transfers.
$cfgGZipDump boolean
$cfgBZipDump boolean
Defines whether to allow the use of gzip/bzip compression when
creating a dump file or not.
$cfgManualBase string
If set to an URL which points to the MySQL documentation,
appropriate help links are generated.
$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).
$cfgBorder integer $cfgBorder integer
The size of a table's border. The size of a table's border.
@@ -226,34 +271,9 @@ Configuration
$cfgBgcolorTwo string [HTML color] $cfgBgcolorTwo string [HTML color]
The color (HTML) #2 for table rows. 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.
$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.
$cfgShowBlob boolean
Defines whether BLOB fields are shown when browsing a table's
content or not.
$cfgProtectBlob boolean
Defines whether BLOB fields are protected from edition when
browsing a table's content or not.
$cfgShowSQL boolean
$cfgShowSQL boolean
Defines whether sql-queries generated by phpMyAdmin should be
displayed or not.
$cfgTextareaCols integer $cfgTextareaCols integer
Number of columns for the textareas. $cfgTextareaRows integer
Number of columns and rows for the textareas.
$cfgTextareaRows integer
Number of rows for the textareas.
$cfgModifyDeleteAtLeft boolean $cfgModifyDeleteAtLeft boolean
$cfgModifyDeleteAtRight boolean $cfgModifyDeleteAtRight boolean
@@ -261,38 +281,20 @@ Configuration
when tables contents are displayed (you may have them displayed when tables contents are displayed (you may have them displayed
both at the left and at the right). both at the left and at the right).
$cfgSkipLockedTables boolean
Mark used tables and make it possible to show databases with
locked tables (since 3.23.30).
$cfgLeftWidth integer $cfgLeftWidth integer
Left frame width in pixel. Left frame width in pixel.
$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).
$cfgOBGzip boolean
Defines whether to use gzip output buffering for increased
speed in HTTP transfers.
$cfgColumnTypes array $cfgColumnTypes array
All possible types of a MySQL column. In most cases you don't All possible types of a MySQL column. In most cases you don't
need to edit this. need to edit this.
$cfgFunctions array
A list of functions MySQL supports. In most cases you don't
need to edit this.
$cfgAttributeTypes array $cfgAttributeTypes array
Possible attributes for fields. In most cases you don't need to Possible attributes for fields. In most cases you don't need to
edit this. edit this.
$cfgFunctions array
A list of functions MySQL supports. In most cases you don't
need to edit this.
______________________________________________________________________ ______________________________________________________________________
[41]Top - [42]Requirements - [43]Introduction - [44]Installation [41]Top - [42]Requirements - [43]Introduction - [44]Installation
@@ -373,7 +375,7 @@ FAQ - Frequently Asked Questions
Write access to the CVS tree is granted only to experienced developers Write access to the CVS tree is granted only to experienced developers
who have already contributed something useful to phpMyAdmin. who have already contributed something useful to phpMyAdmin.
Also, have a look at the file DEVELOPERS. Also, have a look at the [51]Developers section.
What's the preferred way of making phpMyAdmin secure against evil What's the preferred way of making phpMyAdmin secure against evil
access? access?
@@ -393,7 +395,7 @@ FAQ - Frequently Asked Questions
How can I insert a null value into my table? How can I insert a null value into my table?
Enter "null", without the quotes, as the field's value. This is Enter "null", without the quotes, as the field's value. This is
especially useful for Timestamp ot AutoIncrement fields. especially useful for Timestamp or AutoIncrement fields.
I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need to I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need to
install it for each customer? install it for each customer?
@@ -452,18 +454,18 @@ FAQ - Frequently Asked Questions
It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat
7.0 and you updated your php rpm to php-4.0.4pl1-3.i386.rpm, didn't 7.0 and you updated your php rpm to php-4.0.4pl1-3.i386.rpm, didn't
you? you?
So the problem is that this packaged has a serious bug that was So the problem is that this package has a serious bug that was
corrected ages ago in php (2001-01-28: see [51]php's bug tracking corrected ages ago in php (2001-01-28: see [52]php's bug tracking
system for more details). The problem is that the bugged package is system for more details). The problem is that the bugged package is
still available though it was corrected (see [52]redhat's bugzilla for still available though it was corrected (see [53]redhat's bugzilla for
more details). more details).
So please download [53]the fixed package and the problem should go So please download [54]the fixed package and the problem should go
away. away.
And that fixes the \r\n problem with file uploads! And that fixes the \r\n problem with file uploads!
______________________________________________________________________ ______________________________________________________________________
[54]Top - [55]Requirements - [56]Introduction - [57]Installation [55]Top - [56]Requirements - [57]Introduction - [58]Installation
- [58]Configuration - [59]FAQ - [60]Developers - [61]Credits - [59]Configuration - [60]FAQ - [61]Developers - [62]Credits
______________________________________________________________________ ______________________________________________________________________
Developers Information Developers Information
@@ -483,7 +485,7 @@ Developers Information
please try to keep your code as simple as possible: beginners are please try to keep your code as simple as possible: beginners are
using phpMyAdmin as an example application. using phpMyAdmin as an example application.
By the way, we're currently updating all the scripts so they will By the way, we're currently updating all the scripts so they will
be XHTML1.0 and CSS2 compliant on one hand, they will fit [62]PEAR be XHTML1.0 and CSS2 compliant on one hand, they will fit [63]PEAR
coding standards on the other hand. Please pay attention to this. coding standards on the other hand. Please pay attention to this.
* Please try to keep up the file-naming conventions. Table-related * Please try to keep up the file-naming conventions. Table-related
stuff goes to tbl_*.php3, db-related code to db_*.php3 and so on. stuff goes to tbl_*.php3, db-related code to db_*.php3 and so on.
@@ -511,7 +513,7 @@ Developers Information
* add your stuff * add your stuff
* put the modified files (tar'ed and gzip'ed) inside the patch * put the modified files (tar'ed and gzip'ed) inside the patch
tracker of the phpMyAdmin SourceForge account tracker of the phpMyAdmin SourceForge account
([63]http://sourceforge.net/projects/phpmyadmin/) ([64]http://sourceforge.net/projects/phpmyadmin/)
Write access to the CVS tree is granted only to developers who have Write access to the CVS tree is granted only to developers who have
already contributed something useful to phpMyAdmin. If you're already contributed something useful to phpMyAdmin. If you're
@@ -519,8 +521,8 @@ Developers Information
mailing list. mailing list.
______________________________________________________________________ ______________________________________________________________________
[64]Top - [65]Requirements - [66]Introduction - [67]Installation [65]Top - [66]Requirements - [67]Introduction - [68]Installation
- [68]Configuration - [69]FAQ - [70]Developers - [71]Credits - [69]Configuration - [70]FAQ - [71]Developers - [72]Credits
______________________________________________________________________ ______________________________________________________________________
Credits Credits
@@ -559,6 +561,7 @@ CREDITS, in chronological order
* Multiple dump feature * Multiple dump feature
* Gzip dump feature * Gzip dump feature
[gl] - Geert Lund <glund@silversoft.dk>
[kc] - Korakot Chaovavanich <korakot@iname.com> [kc] - Korakot Chaovavanich <korakot@iname.com>
[pk] - Pete Kelly <webmaster@trafficg.com> [pk] - Pete Kelly <webmaster@trafficg.com>
@@ -566,17 +569,17 @@ CREDITS, in chronological order
* rewrote dump code for PHP4 * rewrote dump code for PHP4
* MySQL Table Statistics * MySQL Table Statistics
Benjamin Gandon <gandon@isia.cma.fr> is the main author of the version [bg] - Benjamin Gandon <gandon@isia.cma.fr>
2.1.0.1 * main author of the version 2.1.0.1
The following people have contributed minor changes, enhancements, bugfixes or The following people have contributed minor changes, enhancements, bugfixes or
or support for a new language since version 2.1.0: or support for a new language since version 2.1.0:
Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, Borges Botelho, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, Borges Botelho,
Olivier Bussier, Michal Cihar, Neil Darlow, Kristof Hamann, Thomas Kl<4B>ger, Olivier Bussier, Michal Cihar, Neil Darlow, Kristof Hamann, Thomas Kl<4B>ger,
Lubos Klokner, Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg,
Martin Marconcini, Girish Nair, David Nordenberg, Bernard M. Piller, Bernard M. Piller, Laurent Haas, "Sakamoto", www.securereality.com.au,
Laurent Haas, "Sakamoto", www.securereality.com.au, Michael Tacelosky, Michael Tacelosky, Daniel Villanueva, Vinay, Chee Wai,
Daniel Villanueva, Vinay, Chee Wai, Thomas Michael Winningham. Thomas Michael Winningham.
Original Credits of Version 2.1.0 Original Credits of Version 2.1.0
@@ -620,11 +623,11 @@ Original Credits of Version 2.1.0
or just some feedback. or just some feedback.
______________________________________________________________________ ______________________________________________________________________
[72]Top - [73]Requirements - [74]Introduction - [75]Installation [73]Top - [74]Requirements - [75]Introduction - [76]Installation
- [76]Configuration - [77]FAQ - [78]Developers - [79]Credits - [77]Configuration - [78]FAQ - [79]Developers - [80]Credits
______________________________________________________________________ ______________________________________________________________________
[80]Valid XHTML 1.0! [81]Valid CSS! [81]Valid XHTML 1.0! [82]Valid CSS!
References References
@@ -678,34 +681,35 @@ References
48. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits 48. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits
49. http://www.phpwizard.net/phorum/list.php?f=1 49. http://www.phpwizard.net/phorum/list.php?f=1
50. https://sourceforge.net/projects/phpmyadmin/ 50. https://sourceforge.net/projects/phpmyadmin/
51. http://www.php.net/bugs.php?id=8966 51. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers
52. http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=24933 52. http://www.php.net/bugs.php?id=8966
53. http://people.redhat.com/nalin/test/php-4.0.4pl1-7.i386.rpm 53. http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=24933
54. file://localhost/home/om/www/phpMyAdmin/Documentation.html#top 54. http://people.redhat.com/nalin/test/php-4.0.4pl1-7.i386.rpm
55. file://localhost/home/om/www/phpMyAdmin/Documentation.html#require 55. file://localhost/home/om/www/phpMyAdmin/Documentation.html#top
56. file://localhost/home/om/www/phpMyAdmin/Documentation.html#intro 56. file://localhost/home/om/www/phpMyAdmin/Documentation.html#require
57. file://localhost/home/om/www/phpMyAdmin/Documentation.html#setup 57. file://localhost/home/om/www/phpMyAdmin/Documentation.html#intro
58. file://localhost/home/om/www/phpMyAdmin/Documentation.html#config 58. file://localhost/home/om/www/phpMyAdmin/Documentation.html#setup
59. file://localhost/home/om/www/phpMyAdmin/Documentation.html#faq 59. file://localhost/home/om/www/phpMyAdmin/Documentation.html#config
60. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers 60. file://localhost/home/om/www/phpMyAdmin/Documentation.html#faq
61. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits 61. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers
62. http://pear.php.net/ 62. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits
63. http://sourceforge.net/projects/phpmyadmin/ 63. http://pear.php.net/
64. file://localhost/home/om/www/phpMyAdmin/Documentation.html#top 64. http://sourceforge.net/projects/phpmyadmin/
65. file://localhost/home/om/www/phpMyAdmin/Documentation.html#require 65. file://localhost/home/om/www/phpMyAdmin/Documentation.html#top
66. file://localhost/home/om/www/phpMyAdmin/Documentation.html#intro 66. file://localhost/home/om/www/phpMyAdmin/Documentation.html#require
67. file://localhost/home/om/www/phpMyAdmin/Documentation.html#setup 67. file://localhost/home/om/www/phpMyAdmin/Documentation.html#intro
68. file://localhost/home/om/www/phpMyAdmin/Documentation.html#config 68. file://localhost/home/om/www/phpMyAdmin/Documentation.html#setup
69. file://localhost/home/om/www/phpMyAdmin/Documentation.html#faq 69. file://localhost/home/om/www/phpMyAdmin/Documentation.html#config
70. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers 70. file://localhost/home/om/www/phpMyAdmin/Documentation.html#faq
71. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits 71. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers
72. file://localhost/home/om/www/phpMyAdmin/Documentation.html#top 72. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits
73. file://localhost/home/om/www/phpMyAdmin/Documentation.html#require 73. file://localhost/home/om/www/phpMyAdmin/Documentation.html#top
74. file://localhost/home/om/www/phpMyAdmin/Documentation.html#intro 74. file://localhost/home/om/www/phpMyAdmin/Documentation.html#require
75. file://localhost/home/om/www/phpMyAdmin/Documentation.html#setup 75. file://localhost/home/om/www/phpMyAdmin/Documentation.html#intro
76. file://localhost/home/om/www/phpMyAdmin/Documentation.html#config 76. file://localhost/home/om/www/phpMyAdmin/Documentation.html#setup
77. file://localhost/home/om/www/phpMyAdmin/Documentation.html#faq 77. file://localhost/home/om/www/phpMyAdmin/Documentation.html#config
78. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers 78. file://localhost/home/om/www/phpMyAdmin/Documentation.html#faq
79. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits 79. file://localhost/home/om/www/phpMyAdmin/Documentation.html#developers
80. http://validator.w3.org/check/referer 80. file://localhost/home/om/www/phpMyAdmin/Documentation.html#credits
81. http://jigsaw.w3.org/css-validator/ 81. http://validator.w3.org/check/referer
82. http://jigsaw.w3.org/css-validator/