diff --git a/Documentation.html b/Documentation.html index 30e7a6081d..82d9ad21b5 100644 --- a/Documentation.html +++ b/Documentation.html @@ -843,12 +843,13 @@ since this link provides funding for phpMyAdmin.

As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the - databases in the left frame, so that you can individually arrange your databases.
- If you want to have certain databases at the top, but don't care about the others, you do not - need to specify all other databases. Use: + databases in the navigation panel, so that you can individually arrange + your databases.
+ If you want to have certain databases at the top, but don't care about the + others, you do not need to specify all other databases. Use: $cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*'); - instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic - order. + instead to tell phpMyAdmin that it should display db3 and db4 on top, + and the rest in alphabetic order.
$cfg['Servers'][$i]['hide_db'] string
@@ -857,7 +858,8 @@ since this link provides funding for phpMyAdmin. from listing, but a user is still able to access them (using, for example, the SQL query area). To limit access, use the MySQL privilege system.

- For example, to hide all databases starting with the letter "a", use
+ For example, to hide all databases starting with the letter "a", + use
$cfg['Servers'][$i]['hide_db'] = '^a';
and to hide both "db1" and "db2" use
$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';
@@ -1068,7 +1070,7 @@ ALTER TABLE `pma_column_comments` $cfg['Servers'][$i]['recent'] string
- Since release 3.5.0 you can show recently used tables in the left navigation panel. + Since release 3.5.0 you can show recently used tables in the navigation panel. It helps you to jump across table directly, without the need to select the database, and then select the table. Using $cfg['NumRecentTables'] @@ -1324,7 +1326,8 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE libraries/config.default.php for examples).
$cfg['Servers'][$i]['CountTables'] boolean
-
Whether to count the number of tables for each database when preparing the list of databases for the navigation frame. +
Whether to count the number of tables for each database when preparing the + list of databases for the navigation panel.
$cfg['Servers'][$i]['SignonScript'] string
Name of PHP script to be sourced and executed to obtain @@ -1550,18 +1553,19 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE up tables by the above separator.
$cfg['NumRecentTables'] integer
-
The maximum number of recently used tables shown in the left navigation - frame. Set this to 0 (zero) to disable the listing of recent tables.
+
The maximum number of recently used tables shown in the navigation + panel. Set this to 0 (zero) to disable the listing of recent tables.
$cfg['ShowTooltip'] boolean
-
Defines whether to display table comment as tool-tip in left frame or +
Defines whether to display item comments as tooltips in navigation panel or not.
-
Defines whether or not to display the phpMyAdmin logo at the top of the left frame. - Defaults to TRUE.
+
Defines whether or not to display the phpMyAdmin logo at the top of the + navigation panel. Defaults to TRUE.
-
Enter URL where logo in the navigation frame will point to. +
Enter URL where logo in + the navigation panel will point to. For use especially with self made theme which changes this. The default value for this is main.php.
@@ -1573,7 +1577,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE
$cfg['NavigationTreeDisplayItemFilterMinimum'] integer
Defines the minimum number of items (tables, views, routines and events) - to display a JavaScript filter box above the list of items in the left frame. + to display a JavaScript filter box above the list of items in the navigation tree. Defaults to 30. To disable the filter completely some high number can be used (e.g. 9999)
@@ -1907,7 +1911,7 @@ $cfg['TrustedProxies'] =
$cfg['NaviWidth'] integer
-
Navi frame width in pixels. See themes/themename/layout.inc.php. +
Navigation panel width in pixels. See themes/themename/layout.inc.php.
$cfg['NaviBackground'] string [CSS color for background]
@@ -2184,11 +2188,13 @@ setfacl -d -m "g:www-data:rwx" tmp $cfg['QueryHistoryMax'] integer
- All those variables affect the query window feature. A SQL link - or icon is always displayed on the left panel. If JavaScript is enabled in - your browser, a click on this opens a distinct query window, which is - a direct interface to enter SQL queries. Otherwise, the right panel - changes to display a query box.

+ All those variables affect the query window feature. A + SQL link + or icon is always displayed in the navigation panel. If JavaScript is + enabled in your browser, a click on this opens a distinct query window, + which is a direct interface to enter + SQL queries. + Otherwise, the right panel changes to display a query box.

The size of this query window can be customized with $cfg['QueryWindowWidth'] and $cfg['QueryWindowHeight'] @@ -2254,7 +2260,7 @@ setfacl -d -m "g:www-data:rwx" tmp
$cfg['NaturalOrder'] boolean
Sorts database and table names according to natural order (for example, - t1, t2, t10). Currently implemented in the left panel (Light mode) + t1, t2, t10). Currently implemented in the navigation panel and in Database view, for the table list.
$cfg['InitialSlidersState'] string
@@ -3817,9 +3823,10 @@ to see if the problem goes away.

6.4 How can I backup my database or table?

-

Click on a database or table name in the left frame, the properties will be +

Click on a database or table name in the navigation panel, the properties will be displayed. Then on the menu, click "Export", you can dump - the structure, the data, or both. This will generate standard SQL + the structure, the data, or both. This will generate standard + SQL statements that can be used to recreate your database/table.

You will need to choose "Save as file", so that phpMyAdmin can @@ -3836,7 +3843,7 @@ to see if the problem goes away.

How can I run a ".sql" file? -

Click on a database name in the left frame, the properties will be +

Click on a database name in the navigation panel, the properties will be displayed. Select "Import" from the list of tabs in the right–hand frame (or "SQL" if your phpMyAdmin version is previous to 2.7.0). In the "Location of the text file" section, type in @@ -3899,7 +3906,7 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal');

Then test like this:

-