Skip to content

Commit

Permalink
2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed May 11, 2003
1 parent 51cbb26 commit 566d6da
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 22 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Expand Up @@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$

2003-05-11 Marc Delisle <lem9@users.sourceforge.net>
### 2.5.0 released

2003-05-10 Marc Delisle <lem9@users.sourceforge.net>
* libraries/display_tbl.lib.php3: bug 735439: if too many page numbers,
show just the pages near the current page
Expand Down
4 changes: 2 additions & 2 deletions Documentation.html
Expand Up @@ -8,7 +8,7 @@

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>phpMyAdmin 2.5.0-rc3 - Documentation</title>
<title>phpMyAdmin 2.5.0 - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>

Expand All @@ -31,7 +31,7 @@
<hr noshade="noshade" width="100%" />
</div>

<h1>phpMyAdmin 2.5.0-rc3 Documentation</h1>
<h1>phpMyAdmin 2.5.0 Documentation</h1>


<!-- TOP MENU -->
Expand Down
57 changes: 40 additions & 17 deletions Documentation.txt
Expand Up @@ -6,16 +6,16 @@
Transformations - FAQ - Developers - Credits - Translators
______________________________________________________________________

phpMyAdmin 2.5.0-rc2 Documentation
phpMyAdmin 2.5.0 Documentation

* SourceForge phpMyAdmin project page [ http://www.phpmyadmin.net/
]
* Local documents:
+ Version history: ChangeLog
+ General notes: README
+ License: LICENSE
* Documentation version: $Id: Documentation.html,v 1.433 2003/04/18
18:44:46 nijel Exp $
* Documentation version: $Id: Documentation.html,v 1.438 2003/05/11
10:06:17 lem9 Exp $

Requirements

Expand Down Expand Up @@ -299,7 +299,11 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'

$cfg['Servers'][$i]['port'] string
The port-number of your $i-th MySQL-server. Default is 3306
(leave blank).
(leave blank). If you use "localhost" as the hostname, MySQL
ignores this port number and connects with the socket, so if
you want to connect to a port different from the default port,
use "127.0.0.1" or the real hostname in
$cfg['Servers'][$i]['host'].

$cfg['Servers'][$i]['socket'] string
The path to the socket to use. Leave blank for default.
Expand Down Expand Up @@ -702,7 +706,18 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'

$cfg['LeftFrameLight'] boolean
Defines whether to use select-based menu and display only the
current tables in the left frame (smaller page).
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.

$cfg['ShowTooltip'] boolean
Defines whether to display table comment as tool-tip in left
Expand Down Expand Up @@ -1072,7 +1087,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
Expand Down Expand Up @@ -1609,6 +1624,8 @@ FAQ - Frequently Asked Questions
phpMyAdmin, you need to complete the socket information in the
config.inc.php3.
For example: $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').

Have also a look at the corresponding section of the MySQL
documentation.
Expand Down Expand Up @@ -1688,6 +1705,14 @@ FAQ - Frequently Asked Questions
or
#---------------------------------------------------------

[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 ]

[4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need
Expand Down Expand Up @@ -2008,17 +2033,15 @@ FAQ - Frequently Asked Questions

No, it's MySQL that is doing silent column type changing.

[6.10] My database has an underscore in it's name, and when I grant
privileges to a user for this database, a backslash is added before the
underscore.

This is normal and means that the grant is done only for this
database. If there was no backslash, this would be a wildcard grant,
and the underscore would mean "any character". So, if the database
name is "john_db", the user would get rights to john1db, john2db...
instead of just john_db.
If you really want to grant using a wildcard, there is a dialog box "
Database (wildcards allowed)" for this.
[6.10] When creating a privilege, what happens with underscores in the
database name?

If you do not put a backslash before the underscore, this is a
wildcard grant, and the underscore means "any character". So, if the
database name is "john_db", the user would get rights to john1db,
john2db...
If you put a backslash before the underscore, it means that the
database name will have a real underscore.

[6.11] What is the curious symbol � in the statistics pages?

Expand Down
2 changes: 1 addition & 1 deletion libraries/defines_php.lib.php3
Expand Up @@ -16,7 +16,7 @@
*/
// phpMyAdmin release
if (!defined('PMA_VERSION')) {
define('PMA_VERSION', '2.5.0-rc3');
define('PMA_VERSION', '2.5.0');
}

// php version
Expand Down
4 changes: 2 additions & 2 deletions translators.html
Expand Up @@ -5,7 +5,7 @@

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>phpMyAdmin 2.5.0-rc3 - Official translators</title>
<title>phpMyAdmin 2.5.0 - Official translators</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
<script lanuage="javascript" type="text/javascript">
<!--
Expand Down Expand Up @@ -45,7 +45,7 @@
<hr noshade="noshade" width="100%" />
</div>

<h1>phpMyAdmin 2.5.0-rc3 official translators list</h1>
<h1>phpMyAdmin 2.5.0 official translators list</h1>

<p>
Here is the list of the so called &quot;official translators&quot; of
Expand Down

0 comments on commit 566d6da

Please sign in to comment.