Synced export FAQ with export page.
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2003-08-15 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
|
* Documentation: Synced export FAQ with export page.
|
||||||
|
|
||||||
2003-08-14 Michal Cihar <nijel@users.sourceforge.net>
|
2003-08-14 Michal Cihar <nijel@users.sourceforge.net>
|
||||||
* server_privileges.php3: Fix notice about undefined index (bug #780861).
|
* server_privileges.php3: Fix notice about undefined index (bug #780861).
|
||||||
|
|
||||||
|
@@ -3164,8 +3164,11 @@ To create a new, empty mimetype please see libraries/transformations/template_ge
|
|||||||
once the INSERT verb and the table name.<br />
|
once the INSERT verb and the table name.<br />
|
||||||
"Enclose table and field names with backquotes" ensures that
|
"Enclose table and field names with backquotes" ensures that
|
||||||
field and table names formed with special characters are protected.<br />
|
field and table names formed with special characters are protected.<br />
|
||||||
"Include column comments as inline SQL-comments" includes any
|
"Add AUTO_INCREMENT value" ensures, that AUTO_INCREMENT value
|
||||||
column comments set in the PMA-DB in the dump as SQL comments (<i>/* xxx */</i>).<br /></p>
|
(if any) will be included in backup.<br />
|
||||||
|
"Add into comments" includes column comments, relations and MIME
|
||||||
|
types set in the PMA-DB in the dump as SQL comments (<i>/* xxx */</i>).<br />
|
||||||
|
</p>
|
||||||
|
|
||||||
<h4>
|
<h4>
|
||||||
[6.13] I would like to create a database with a dot in its name.
|
[6.13] I would like to create a database with a dot in its name.
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
Transformations - FAQ - Developers - Credits - Translators
|
Transformations - FAQ - Developers - Credits - Translators
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
phpMyAdmin 2.5.3-rc1 Documentation
|
phpMyAdmin 2.5.3-rc2 Documentation
|
||||||
|
|
||||||
* SourceForge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
* SourceForge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
||||||
]
|
]
|
||||||
@@ -14,8 +14,8 @@
|
|||||||
+ Version history: ChangeLog
|
+ Version history: ChangeLog
|
||||||
+ General notes: README
|
+ General notes: README
|
||||||
+ License: LICENSE
|
+ License: LICENSE
|
||||||
* Documentation version: $Id: Documentation.html,v 1.484 2003/07/29
|
* Documentation version: $Id: Documentation.html,v 1.489 2003/08/07
|
||||||
20:25:04 lem9 Exp $
|
17:18:49 lem9 Exp $
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
|
|
||||||
@@ -104,15 +104,17 @@ Installation
|
|||||||
your databases, or a login dialog if using HTTP or cookie
|
your databases, or a login dialog if using HTTP or cookie
|
||||||
authentication mode.
|
authentication mode.
|
||||||
6. For a whole set of new features (bookmarks, comments, SQL-history,
|
6. For a whole set of new features (bookmarks, comments, SQL-history,
|
||||||
PDP-generation) you need to create a set of tables in your
|
PDF-generation, field contents transformation, etc.) you need to
|
||||||
database. Please look at your scripts/ directory, where you should
|
create a set of tables in your database. Please look at your
|
||||||
find a file called create_tables.sql. You can already use your
|
scripts/ directory, where you should find a file called
|
||||||
phpMyAdmin to create the tables for you. Please be aware that you
|
create_tables.sql. (If you are using a Windows server, pay special
|
||||||
may have to have special (administrator) privileges to create the
|
attention to FAQ 1.23). You can already use your phpMyAdmin to
|
||||||
database and tables. After having imported the create_tables.sql
|
create the tables for you. Please be aware that you may have to
|
||||||
file, you should specify the table names in your config.inc.php3
|
have special (administrator) privileges to create the database and
|
||||||
file. The directives used for that can be found in the
|
tables. After having imported the create_tables.sql file, you
|
||||||
Configuration section.
|
should specify the table names in your config.inc.php3 file. The
|
||||||
|
directives used for that can be found in the Configuration
|
||||||
|
section.
|
||||||
|
|
||||||
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
|
||||||
@@ -176,7 +178,7 @@ GRANT SELECT (
|
|||||||
... and if you want to use the many new relation and bookmark
|
... and if you want to use the many new relation and bookmark
|
||||||
features:
|
features:
|
||||||
|
|
||||||
GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db> TO 'pma'@'localhost';
|
GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';
|
||||||
|
|
||||||
(this of course requires you to have a special DB for phpMyAdmin,
|
(this of course requires you to have a special DB for phpMyAdmin,
|
||||||
the contents will be explained later)
|
the contents will be explained later)
|
||||||
@@ -396,6 +398,9 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
|||||||
to work with master / foreign - tables. To use those as well as
|
to work with master / foreign - tables. To use those as well as
|
||||||
the bookmark feature you need special tables with a predefined
|
the bookmark feature you need special tables with a predefined
|
||||||
structure, which we explain below.
|
structure, which we explain below.
|
||||||
|
See the Quick Install section in this document for a quick way
|
||||||
|
of creating those tables. Also, if you are using a Windows
|
||||||
|
server, read FAQ 1.23.
|
||||||
If you are the only user of this phpMyAdmin installation, you
|
If you are the only user of this phpMyAdmin installation, you
|
||||||
can use your current database to store those special tables; in
|
can use your current database to store those special tables; in
|
||||||
this case, just put your current database name in
|
this case, just put your current database name in
|
||||||
@@ -1712,6 +1717,11 @@ FAQ - Frequently Asked Questions
|
|||||||
#SetOutputFilter PHP
|
#SetOutputFilter PHP
|
||||||
#SetInputFilter PHP
|
#SetInputFilter PHP
|
||||||
|
|
||||||
|
[1.30] I get the error "left.php: Missing hash".
|
||||||
|
|
||||||
|
This problem is known to happen when the server is running Turck
|
||||||
|
MMCache but upgrading MMCache to version 2.3.21 solves the problem.
|
||||||
|
|
||||||
[2. Configuration]
|
[2. Configuration]
|
||||||
|
|
||||||
[2.1] The error message "Warning: Cannot add header information - headers
|
[2.1] The error message "Warning: Cannot add header information - headers
|
||||||
@@ -1794,10 +1804,9 @@ FAQ - Frequently Asked Questions
|
|||||||
relogin in with the same nick.
|
relogin in with the same nick.
|
||||||
|
|
||||||
This is related to the authentication mechanism (protocol) used by
|
This is related to the authentication mechanism (protocol) used by
|
||||||
phpMyAdmin. We plan to change it as soon as we may find enough free
|
phpMyAdmin. To bypass this problem: just close all the opened browser
|
||||||
time to do it, but you can bypass this problem: just close all the
|
windows and then go back to phpMyAdmin. You should be able to log in
|
||||||
opened browser windows and then go back to phpMyAdmin. You should be
|
again.
|
||||||
able to log in again.
|
|
||||||
|
|
||||||
[3.2] When dumping a large table in compressed mode, I get a memory limit
|
[3.2] When dumping a large table in compressed mode, I get a memory limit
|
||||||
error or a time limit error.
|
error or a time limit error.
|
||||||
@@ -2139,19 +2148,23 @@ FAQ - Frequently Asked Questions
|
|||||||
* Choose "Structure" in the navigation on top
|
* Choose "Structure" in the navigation on top
|
||||||
* Choose "Edit PDF Pages" which should be somewhere at the bottom of
|
* Choose "Edit PDF Pages" which should be somewhere at the bottom of
|
||||||
the page
|
the page
|
||||||
* Enter the name for a first pdf page and submit
|
* Enter the name for a first pdf page and submit (you can also use
|
||||||
|
the "Automatic layout", which will place on your page all the
|
||||||
|
tables that are linked)
|
||||||
* Choose this page to edit
|
* Choose this page to edit
|
||||||
* Now add a table you want to show on this page and it's coordinates
|
* Now add a table you want to show on this page and its coordinates
|
||||||
and submit
|
and submit
|
||||||
First you will have to guess this coordinates of course, so just
|
First you will have to guess those coordinates of course, so just
|
||||||
expect to have an area of about 297 * 210 and put the tables
|
expect to have an area of about 297 * 210 and put the tables
|
||||||
coordinates somewhere in there, you will be able to have a look at
|
coordinates somewhere in there, you will be able to have a look at
|
||||||
what happened and change them later.
|
what happened and change them later.
|
||||||
For example, x=100 and y=200 means that the table will be at 200
|
For example, x=100 and y=200 means that the table will be at 200
|
||||||
mm down and 100 mm right from the upper left corner.
|
mm down and 100 mm right from the upper left corner.
|
||||||
Actually if you have a width of more than 300 or a height of more
|
Actually if you have a width of more than 300 or a height of more
|
||||||
than 200 than it will automatically be scaled but 300*100 is a
|
than 200 then it will automatically be scaled but 200*100 is a
|
||||||
good start to have an idea of what coordinates to use.
|
good start to have an idea of what coordinates to use.
|
||||||
|
* There is also a visual editor (scratchboard) available, see the
|
||||||
|
explanation at the $cfg['WYSIWYG-PDF'] section.
|
||||||
* After every table you submitted you will have the possibility to
|
* After every table you submitted you will have the possibility to
|
||||||
submit more tables
|
submit more tables
|
||||||
* When you have entered enough tables Click on your db name in the
|
* When you have entered enough tables Click on your db name in the
|
||||||
@@ -2181,7 +2194,7 @@ FAQ - Frequently Asked Questions
|
|||||||
If you put a backslash before the underscore, it means that the
|
If you put a backslash before the underscore, it means that the
|
||||||
database name will have a real underscore.
|
database name will have a real underscore.
|
||||||
|
|
||||||
[6.11] What is the curious symbol <EFBFBD> in the statistics pages?
|
[6.11] What is the curious symbol o/ in the statistics pages?
|
||||||
|
|
||||||
It means "average".
|
It means "average".
|
||||||
|
|
||||||
@@ -2193,8 +2206,10 @@ FAQ - Frequently Asked Questions
|
|||||||
INSERT verb and the table name.
|
INSERT verb and the table name.
|
||||||
"Enclose table and field names with backquotes" ensures that field and
|
"Enclose table and field names with backquotes" ensures that field and
|
||||||
table names formed with special characters are protected.
|
table names formed with special characters are protected.
|
||||||
"Include column comments as inline SQL-comments" includes any column
|
"Add AUTO_INCREMENT value" ensures, that AUTO_INCREMENT value (if any)
|
||||||
comments set in the PMA-DB in the dump as SQL comments (/* xxx */).
|
will be included in backup.
|
||||||
|
"Add into comments" includes column comments, relations and MIME types
|
||||||
|
set in the PMA-DB in the dump as SQL comments (/* xxx */).
|
||||||
|
|
||||||
[6.13] I would like to create a database with a dot in its name.
|
[6.13] I would like to create a database with a dot in its name.
|
||||||
|
|
||||||
@@ -2212,7 +2227,7 @@ FAQ - Frequently Asked Questions
|
|||||||
If you use it, you should be aware that any SQL statement you submit
|
If you use it, you should be aware that any SQL statement you submit
|
||||||
will be stored anonymously (database/table/column names, strings,
|
will be stored anonymously (database/table/column names, strings,
|
||||||
numbers replaced with generic values). The Mimer SQL Validator itself,
|
numbers replaced with generic values). The Mimer SQL Validator itself,
|
||||||
is <EFBFBD> 2001 Upright Database Technology. We utilize it as free SOAP
|
is (c) 2001 Upright Database Technology. We utilize it as free SOAP
|
||||||
service.
|
service.
|
||||||
|
|
||||||
[6.15] I want to add a BLOB field and put an index on it, but MySQL says
|
[6.15] I want to add a BLOB field and put an index on it, but MySQL says
|
||||||
@@ -2455,7 +2470,7 @@ CREDITS, in chronological order
|
|||||||
* current project maintainer
|
* current project maintainer
|
||||||
* many bugfixes and improvements
|
* many bugfixes and improvements
|
||||||
|
|
||||||
- Lo<EFBFBD>c Chapeaux <lolo_at_phpheaven.net>
|
- Loic Chapeaux <lolo_at_phpheaven.net>
|
||||||
* rewrote and optimized javascript, DHTML and DOM stuff
|
* rewrote and optimized javascript, DHTML and DOM stuff
|
||||||
* rewrote the scripts so they fit the PEAR coding standards and
|
* rewrote the scripts so they fit the PEAR coding standards and
|
||||||
generate XHTML1.0 and CSS2 compliant codes
|
generate XHTML1.0 and CSS2 compliant codes
|
||||||
|
Reference in New Issue
Block a user