2.2.5-rc1
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||||
<title>phpMyAdmin 2.2.5-dev - Documentation</title>
|
<title>phpMyAdmin 2.2.5-rc1 - Documentation</title>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
<!--
|
<!--
|
||||||
.navigation {
|
.navigation {
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
|
|
||||||
<body bgcolor="#FFFFFF">
|
<body bgcolor="#FFFFFF">
|
||||||
<a name="top"></a>
|
<a name="top"></a>
|
||||||
<h1>phpMyAdmin 2.2.5-dev Documentation</h1>
|
<h1>phpMyAdmin 2.2.5-rc1 Documentation</h1>
|
||||||
|
|
||||||
|
|
||||||
<!-- TOP MENU -->
|
<!-- TOP MENU -->
|
||||||
|
@@ -9,8 +9,8 @@
|
|||||||
+ Version history: ChangeLog
|
+ Version history: ChangeLog
|
||||||
+ General notes: README
|
+ General notes: README
|
||||||
+ License: LICENSE
|
+ License: LICENSE
|
||||||
* Documentation version: $Id: Documentation.html,v 1.160 2002/03/07
|
* Documentation version: $Id: Documentation.html,v 1.164 2002/03/09
|
||||||
13:33:03 lem9 Exp $
|
12:36:30 loic1 Exp $
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
Top - Requirements - Introduction - Installation -
|
Top - Requirements - Introduction - Installation -
|
||||||
@@ -227,7 +227,7 @@ Configuration
|
|||||||
"controluser", you could get some errors, depending the exact
|
"controluser", you could get some errors, depending the exact
|
||||||
privileges you gave to the "controluser". phpMyAdmin does not
|
privileges you gave to the "controluser". phpMyAdmin does not
|
||||||
support a direct login with the "controluser".
|
support a direct login with the "controluser".
|
||||||
In versions before 2.2.5, those were called stduser/stdpass.
|
In versions before 2.2.5, those were called "stduser/stdpass".
|
||||||
|
|
||||||
$cfgServers[n]['auth_type'] string ['http'|'cookie'|'config']
|
$cfgServers[n]['auth_type'] string ['http'|'cookie'|'config']
|
||||||
Whether config or cookie or http authentication should be used
|
Whether config or cookie or http authentication should be used
|
||||||
@@ -372,13 +372,19 @@ Configuration
|
|||||||
$cfgShowMysqlInfo boolean
|
$cfgShowMysqlInfo boolean
|
||||||
$cfgShowMysqlVars boolean
|
$cfgShowMysqlVars boolean
|
||||||
$cfgShowPhpInfo boolean
|
$cfgShowPhpInfo boolean
|
||||||
|
$cfgShowChgPassword boolean
|
||||||
Defines whether to display the "MySQL runtime information",
|
Defines whether to display the "MySQL runtime information",
|
||||||
"MySQL system variables" and "PHP information" links or not for
|
"MySQL system variables", "PHP information" and "Change
|
||||||
simple users at the starting main (right) frame. This setting
|
password " links or not for simple users at the starting main
|
||||||
does not check MySQL commands entered directly.
|
(right) frame. This setting does not check MySQL commands
|
||||||
|
entered directly.
|
||||||
Please note that to block the usage of phpinfo() in scripts,
|
Please note that to block the usage of phpinfo() in scripts,
|
||||||
you have to put this in your php.ini:
|
you have to put this in your php.ini:
|
||||||
disable_functions = phpinfo()
|
disable_functions = phpinfo()
|
||||||
|
Also note that enabling the "Change password " link has no
|
||||||
|
effect with "config" authentication mode: because of the hard
|
||||||
|
coded password value in the configuration file, end users can't
|
||||||
|
be allowed to change their passwords.
|
||||||
|
|
||||||
$cfgLoginCookieRecall boolean
|
$cfgLoginCookieRecall boolean
|
||||||
Define whether the previous login should be recalled or not in
|
Define whether the previous login should be recalled or not in
|
||||||
@@ -640,6 +646,13 @@ FAQ - Frequently Asked Questions
|
|||||||
The error message "Warning: MySQL Connection Failed: Can't connect to
|
The error message "Warning: MySQL Connection Failed: Can't connect to
|
||||||
local MySQL server through socket '/tmp/mysql.sock' (111)...") is
|
local MySQL server through socket '/tmp/mysql.sock' (111)...") is
|
||||||
displayed. What can I do?
|
displayed. What can I do?
|
||||||
|
For RedHat users, Harald Legner suggests this on the mailing list:
|
||||||
|
On my RedHat-Box the socket of mysql is /var/lib/mysql/mysql.sock. In
|
||||||
|
your php.ini you will find a line
|
||||||
|
mysql.default_socket = /tmp/mysql.sock
|
||||||
|
change it to
|
||||||
|
mysql.default_socket = /var/lib/mysql/mysql.sock
|
||||||
|
Then restart apache and it will work.
|
||||||
Here is a fix suggested by Brad Ummer in the phpwizard forum:
|
Here is a fix suggested by Brad Ummer in the phpwizard forum:
|
||||||
* First, you need to determine what socket is being used by MySQL.
|
* First, you need to determine what socket is being used by MySQL.
|
||||||
To do this, telnet to your server and go to the MySQL bin
|
To do this, telnet to your server and go to the MySQL bin
|
||||||
@@ -731,12 +744,10 @@ FAQ - Frequently Asked Questions
|
|||||||
with phpMyAdmin's authentication, so remove it.
|
with phpMyAdmin's authentication, so remove it.
|
||||||
|
|
||||||
Is it possible to let users create their own databases?
|
Is it possible to let users create their own databases?
|
||||||
Yes, but currently (phpMyAdmin 2.2.4) there is no visual way to do
|
Starting with 2.2.5, in the user management page, you can enter a
|
||||||
this in our user management page. For example, let's say users should
|
wildcard database name for a user, and put the privileges you want.
|
||||||
be able to create databases with a name starting like their username,
|
For example, adding SELECT, INSERT, UPDATE, DELETE, CREATE, DROP,
|
||||||
type this in a query box:
|
INDEX, ALTER would let a user create/manage his/her database(s).
|
||||||
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
|
|
||||||
ON `username%`.* TO 'username'@localhost;
|
|
||||||
|
|
||||||
[Browsers or client OS]
|
[Browsers or client OS]
|
||||||
|
|
||||||
@@ -989,7 +1000,7 @@ P
|
|||||||
Kristof Hamann, Thomas Kl<4B>ger, Lubos Klokner, Martin Marconcini,
|
Kristof Hamann, Thomas Kl<4B>ger, Lubos Klokner, Martin Marconcini,
|
||||||
Girish Nair, David Nordenberg, Bernard M. Piller, Laurent Haas,
|
Girish Nair, David Nordenberg, Bernard M. Piller, Laurent Haas,
|
||||||
"Sakamoto", Yuval Sarna, www.securereality.com.au,
|
"Sakamoto", Yuval Sarna, www.securereality.com.au,
|
||||||
Peter Svec, Michael Tacelosky, Daniel Villanueva, Vinay,
|
Peter Svec, Michael Tacelosky, Lu<4C>s V., Daniel Villanueva, Vinay,
|
||||||
Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham.
|
Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham.
|
||||||
|
|
||||||
|
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
// phpMyAdmin release
|
// phpMyAdmin release
|
||||||
if (!defined('PMA_VERSION')) {
|
if (!defined('PMA_VERSION')) {
|
||||||
define('PMA_VERSION', '2.2.5-dev');
|
define('PMA_VERSION', '2.2.5-rc1');
|
||||||
}
|
}
|
||||||
|
|
||||||
// php version
|
// php version
|
||||||
|
Reference in New Issue
Block a user