diff --git a/ChangeLog b/ChangeLog index 0d0638b5e..a22a42dea 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ $Source$ 2003-05-02 Garvin Hicking * css/phpmyadmin.css.php3: Small typo, seems to be solution of support request #728820 + * Documentation.html: Enhance FAQ 2.3 (mysql.sock readable, + thanks to Ryan) 2003-04-30 Marc Delisle * pdf_schema.php3, bug 729517, better comment output, diff --git a/Documentation.html b/Documentation.html index 7e3932e34..92ce7482b 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1046,6 +1046,20 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
Defines whether to use select-based menu and display only the current tables in the left frame (smaller page). + Only in Non-Lightmode you can use the feature to display nested folders + using $cfg['LeftFrameTableSeparator'] +

+
+ +
$cfg['LeftFrameTableSeparator'] string
+
+ Defines a string to be used to nest table spaces. Defaults to '__'. This + means if you have tables like 'first__second__third' this will be + shown as a three-level hierarchie like: first > second > third. + If set to FALSE or empty, the feature is disabled. + NOTE: You shall not use this Separator in a table name at the beginning or + end of a table name, or multiple times after another without any other + characters in between.

@@ -1584,7 +1598,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
  • punct Applies to all punctuation sub-classes
  • punct_bracket_open_round Opening brackets"("
  • punct_bracket_close_round Closing brackets ")"
  • -
  • punct_listsep List item seperator ","
  • +
  • punct_listsep List item Separator ","
  • punct_qualifier Table/Column Qualifier "."
  • punct_queryend End of query marker ";"
  • alpha Applies to all alphabetic classes
  • @@ -2327,7 +2341,9 @@ To create a new, empty mimetype please see libraries/transformations/template_ge open the connection. To do this in phpMyAdmin, you need to complete the socket information in the config.inc.php3.
    For example: - $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock'; + $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';

    + Please also make sure that the permissions of this file allow to be readable + by your webserver (i.e. '0755').

    @@ -2441,6 +2457,16 @@ To create a new, empty mimetype please see libraries/transformations/template_ge

    +

    + [3.3] When using nested folders ($cfg['LeftFrameTableSeparator']) there + are some multiple hierarchies displayed in a wrong manner?! +

    +

    + Please note that you should not use the seperating string multiple times + without any characters between them, or at the beginning/end of your table + name. If you have to, think about using another TableSeparator or disabling + that feature +


    [4. ISPs, multi-user installations ]