From fc6f7a909abf92974198ebaba2ba6a6e5dad95a3 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Fri, 9 Nov 2007 18:44:11 +0000 Subject: [PATCH] fixed HTML warnings --- Documentation.html | 89 +++++++++++++++++++++++----------------------- 1 file changed, 45 insertions(+), 44 deletions(-) diff --git a/Documentation.html b/Documentation.html index 5034c483e..77758e2cd 100644 --- a/Documentation.html +++ b/Documentation.html @@ -172,12 +172,12 @@

Quick Install

  1. Choose an appropriate distribution kit from the phpmyadmin.net - Downloads page. Some kits contain only the English messages, - others contain all languages in UTF-8 format (this should be fine - in most situations), others contain all - languages and all character sets. We'll assume you chose a kit whose - name looks like phpMyAdmin-x.x.x-all-languages.tar.gz. -
  2. + Downloads page. Some kits contain only the English messages, + others contain all languages in UTF-8 format (this should be fine + in most situations), others contain all + languages and all character sets. We'll assume you chose a kit whose + name looks like phpMyAdmin-x.x.x-all-languages.tar.gz. +
  3. Untar or unzip the distribution (be sure to unzip the subdirectories): tar -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz in your webserver's document root. If you don't have direct access to your document root, @@ -192,9 +192,9 @@ 1.26 for suggestions.
  4. Now you must configure your installation. There are two methods that can be used. Traditionally, users have hand-edited a copy of - config.inc.php, but now a wizard-style setup script is - provided for those who prefer a graphical installation. Creating a - config.inc.php is still a quick way to get started and needed for some advanced features. + config.inc.php, but now a wizard-style setup script is + provided for those who prefer a graphical installation. Creating a + config.inc.php is still a quick way to get started and needed for some advanced features.
    • To manually create the file, simply use your text editor to create the file config.inc.php (you can copy config.sample.inc.php to get minimal configuration @@ -481,11 +481,11 @@ GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real

      'signon' authentication mode

      • This mode is a convenient way of using credentials from another - application to authenticate to phpMyAdmin.
      • -
      • The other application has to store login information into - session data.
      • + application to authenticate to phpMyAdmin. +
      • The other application has to store login information into + session data.
      • More details in the auth_type - section.
      • + section.

      'config' authentication mode

      @@ -690,7 +690,7 @@ GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real
    • 'HTTP' authentication (was called 'advanced' in previous versions and can be written also as 'http') ($auth_type = 'HTTP') as introduced in 1.3.0 allows you to log in as any valid MySQL user via HTTP-Auth.
    • -
    • 'signon' authentication mode +
    • 'signon' authentication mode ($auth_type = 'signon') as introduced in 2.10.0 allows you to log in from prepared PHP session data. This is useful for implementing single signon @@ -774,8 +774,8 @@ GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real
      Only useful when using phpMyAdmin with multiple server entries. If set, this string will be displayed instead of the hostname in the pull-down menu on the main page. This can be useful if you want to show only - certain databases on your system, for example. For HTTP auth, all - non-US-ASCII characters will be stripped.
      + certain databases on your system, for example. For HTTP auth, all + non-US-ASCII characters will be stripped.
      $cfg['Servers'][$i]['pmadb'] string @@ -971,7 +971,7 @@ ALTER TABLE `pma_column_comments` $cfg['Servers'][$i]['designer_coords'] string
      Since release 2.10.0 a Designer interface is available; it permits - to visually manage the relations. + to visually manage the relations.

      To allow the usage of this functionality: @@ -1085,14 +1085,14 @@ ALTER TABLE `pma_column_comments`
      $cfg['MaxDbList'] integer
      The maximum number of database names to be displayed in the navigation frame and the database list.
      - +
      $cfg['MaxTableList'] integer
      The maximum number of table names to be displayed in the - main panel's list (except on the Export page). This limit is also enforced in the navigation panel + main panel's list (except on the Export page). This limit is also enforced in the navigation panel when in Light mode.
      $cfg['MaxCharactersInDisplayedSQL'] integer
      -
      The maximum number of characters when a SQL query is displayed. The +
      The maximum number of characters when a SQL query is displayed. The default limit of 1000 should be correct to avoid the display of tons of hexadecimal codes that represent BLOBs, but some users have real SQL queries that are longer than 1000 characters.
      @@ -1244,7 +1244,7 @@ ALTER TABLE `pma_column_comments`
      Defines whether or not to display the phpMyAdmin logo at the top of the left frame. Defaults to TRUE.
      -
      Enter URL where logo in the navigation frame will point to. +
      Enter URL where logo in the navigation frame will point to. For use especially with self made theme which changes this. The default value for this is main.php.
      @@ -1260,7 +1260,7 @@ ALTER TABLE `pma_column_comments`
      Defines whether to display this server choice as links instead of in a drop-down. Defaults to FALSE (drop-down).
      $cfg['DisplayDatabasesList'] boolean or text
      -
      Defines whether to display database choice in light navigation frame as links +
      Defines whether to display database choice in light navigation frame as links instead of in a drop-down. Defaults to 'auto' - on main page list is shown, when database is selected, only drop down is displayed.
      @@ -1279,7 +1279,7 @@ ALTER TABLE `pma_column_comments`
      $cfg['ShowServerInfo'] boolean
      Defines whether to display detailed server information on main page. - You can additionally hide more information by using + You can additionally hide more information by using $cfg['Servers'][$i]['verbose'].
      @@ -1340,7 +1340,7 @@ ALTER TABLE `pma_column_comments`
      $cfg['ShowFunctionFields'] boolean
      -
      Defines whether or not MySQL functions fields should be initially +
      Defines whether or not MySQL functions fields should be initially displayed in edit/insert mode. Since version 2.10, the user can toggle this setting from the interface.
      @@ -1506,13 +1506,13 @@ ALTER TABLE `pma_column_comments` default empty, you need to fill in some trusted proxy servers if you want to use rules for IP addresses behind proxy.

      - The following example specifies that phpMyAdmin should trust a + The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-For) header coming from the proxy 1.2.3.4:
       $cfg['TrustedProxies'] =
            array('1.2.3.4' => 'HTTP_X_FORWARDED_FOR');
       
      - The $cfg['Servers'][$i]['AllowDeny']['rules'] directive uses the + The $cfg['Servers'][$i]['AllowDeny']['rules'] directive uses the client's IP address as usual. @@ -1545,6 +1545,7 @@ $cfg['TrustedProxies'] = See themes/themename/layout.inc.php.
      $cfg['NaviDatabaseNameColor'] string [valid css code]
      +
      The color used for the database name in the navi frame. See themes/themename/layout.inc.php.
      @@ -1693,8 +1694,8 @@ $cfg['TrustedProxies'] = The name of the directory where SQL files have been uploaded by other means than phpMyAdmin (for example, ftp). Those files - are available under a drop-down box when you click the database or - table name, then the Import tab. + are available under a drop-down box when you click the database or + table name, then the Import tab.

      If you want different directory for each user, %u will be replaced @@ -1724,8 +1725,8 @@ $cfg['TrustedProxies'] = If you want different directory for each user, %u will be replaced with username.

      - Please note that the directory must exist and has to be writable for - the user running webserver.

      + Please note that the directory must exist and has to be writable for + the user running webserver.

      Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. @@ -1831,7 +1832,7 @@ $cfg['TrustedProxies'] =
      $cfg['MaxExactCountViews'] integer
      For VIEWs, since obtaining the exact count could have an impact on performance, this value is the maximum to be displayed, using - a SELECT COUNT ... LIMIT. The default value of 0 bypasses + a SELECT COUNT ... LIMIT. The default value of 0 bypasses any row counting.
      @@ -2009,8 +2010,8 @@ $cfg['TrustedProxies'] = to the end of every page displayed in the main window with profiling statistics for that page.
      You may need to increase the maximum execution time for this to - complete successfully.Profiling was removed from the code for - version 2.9.0 due to licensing issues. + complete successfully.Profiling was removed from the code for + version 2.9.0 due to licensing issues.
      $cfg['DBG']['profile']['threshold'] float (units in milliseconds)
      DEVELOPERS ONLY!
      @@ -2110,7 +2111,7 @@ $cfg['TrustedProxies'] = 'Transformation options'.

      • The field 'MIME-type' is a drop-down field. Select the MIME-type - that corresponds to the column's contents. Please note that + that corresponds to the column's contents. Please note that transformations are inactive as long as no MIME-type is selected.
      • The field 'Browser transformation' is a drop-down field. You can choose from a @@ -2377,7 +2378,7 @@ $cfg['TrustedProxies'] =

        These features are based on the gzencode() and bzcompress() PHP functions to be more independent of the platform (Unix/Windows, Safe Mode - or not, and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2 + or not, and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2 support (--with-zlib and --with-bz2).
        We faced PHP crashes when trying to download a dump with MS Internet Explorer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In @@ -2513,8 +2514,8 @@ $cfg['TrustedProxies'] = 1.17 Which MySQL versions does phpMyAdmin support? -

        In phpMyAdmin 3.0.x, versions starting with MySQL 5.0.1 are -fully supported. phpMyAdmin may connect to your MySQL server +

        In phpMyAdmin 3.0.x, versions starting with MySQL 5.0.1 are +fully supported. phpMyAdmin may connect to your MySQL server using PHP's classic MySQL extension as well as the improved MySQL extension (MySQLi) that @@ -2533,7 +2534,7 @@ using PHP's classic php Win32 builds.

        - 1.17a I cannot connect to the MySQL server. It always returns the error + 1.17a I cannot connect to the MySQL server. It always returns the error message, "Client does not support authentication protocol requested by server; consider upgrading MySQL client"
        @@ -2722,7 +2723,7 @@ SetInputFilter PHP mode under IIS 5.1.

        1. In your php.ini file, set cgi.rfc2616_headers = 0
        2. -
        3. In Web Site Properties -> File/Directory Security -> Anonymous +
        4. In Web Site Properties -> File/Directory Security -> Anonymous Access dialog box, check the Anonymous access checkbox and uncheck any other checkboxes (i.e. uncheck Basic authentication, Integrated Windows authentication, and Digest if it's @@ -2960,8 +2961,8 @@ RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
        5. In the php.ini directive arg_separator.input, a value of ";" will cause this error. Replace it with "&;".
        6. -
        7. If you are using Hardened-PHP, - you might want to increase +
        8. If you are using Hardened-PHP, + you might want to increase request limits.
        9. The directory specified in the php.ini directive session.save_path does not exist or is read-only. @@ -3124,7 +3125,7 @@ RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]

          - 3.14 I am not able to browse a table when I don't have the right to SELECT one of the columns.

          + 3.14 I am not able to browse a table when I don't have the right to SELECT one of the columns.

          This has been a known limitation of phpMyAdmin since the beginning and it's not likely to be solved in the future. @@ -3248,7 +3249,7 @@ $cfg['Servers'][$i]['AllowDeny']['rules'] = array( while a domain name is defined in the config file.

          - 4.8 Which parameters can I use in the URL that starts phpMyAdmin?

          + 4.8 Which parameters can I use in the URL that starts phpMyAdmin?

          When starting phpMyAdmin, you can use the db, pma_username, pma_password and server parameters. This last one can contain either the numeric host index (from $i of the configuration file) or one of the host names present in the configuration file. Using pma_username and pma_password has been tested along with the usage of 'cookie' auth_type.

          @@ -4335,7 +4336,7 @@ Original Credits of Version 2.1.0 applications.
        10. port - a connection through which data is sent and received.
        11. -
        12. RFC +
        13. RFC - Request for Comments (RFC) documents are a series of memoranda encompassing new research, innovations, and methodologies applicable to Internet technologies.