2.3.2
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2002-10-08 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* ### 2.3.2 released ###
|
||||
|
||||
2002-10-05 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* db_details_structure.php3: get true row count for InnoDB tables
|
||||
* lang/albanian: update, thanks to Laurent Dhima
|
||||
|
@@ -5,7 +5,7 @@
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>phpMyAdmin 2.3.2-dev - Documentation</title>
|
||||
<title>phpMyAdmin 2.3.2 - Documentation</title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
.navigation {
|
||||
@@ -74,7 +74,7 @@
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
<a name="top"></a>
|
||||
<h1>phpMyAdmin 2.3.2-dev Documentation</h1>
|
||||
<h1>phpMyAdmin 2.3.2 Documentation</h1>
|
||||
|
||||
|
||||
<!-- TOP MENU -->
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
phpMyAdmin 2.3.1 Documentation
|
||||
phpMyAdmin 2.3.2 Documentation
|
||||
|
||||
* Sourceforge phpMyAdmin project page [ http://www.phpmyadmin.net/
|
||||
]
|
||||
@@ -7,8 +7,8 @@
|
||||
+ Version history: ChangeLog
|
||||
+ General notes: README
|
||||
+ License: LICENSE
|
||||
* Documentation version: $Id: Documentation.html,v 1.347 2002/09/30
|
||||
00:37:42 lem9 Exp $
|
||||
* Documentation version: $Id: Documentation.html,v 1.351 2002/10/08
|
||||
19:07:27 lem9 Exp $
|
||||
______________________________________________________________________
|
||||
|
||||
Top - Requirements - Introduction - Installation -
|
||||
@@ -130,7 +130,8 @@ Installation
|
||||
config.inc.php3 file under the $cfg['Servers'][$i]['controluser']&
|
||||
$cfg['Servers'][$i]['controlpass'] settings.
|
||||
This example assumes you want to use pma as the controluser and
|
||||
pmapass as the controlpass:
|
||||
pmapass as the controlpass, but this is only an example: use
|
||||
something else in your file:
|
||||
|
||||
GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY
|
||||
'pmapass';
|
||||
@@ -351,12 +352,12 @@ CRIPT_NAME'], '/')+1);
|
||||
|
||||
+ create a new database for phpmyadmin:
|
||||
CREATE DATABASE phpmyadmin;
|
||||
Note that "controluser" must have SELECT, INSERT and DELETE
|
||||
privileges on this database. Here is a query to set up those
|
||||
privileges (using "phpmyadmin" as the database name, and
|
||||
"pma" as the controluser):
|
||||
GRANT SELECT,INSERT,DELETE ON phpmyadmin.* to
|
||||
'pma'@localhost;
|
||||
Note that "controluser" must have SELECT, INSERT, UPDATE and
|
||||
DELETE privileges on this database. Here is a query to set up
|
||||
those privileges (using "phpmyadmin" as the database name,
|
||||
and "pma" as the controluser):
|
||||
GRANT SELECT,INSERT,UPDATE,DELETE ON phpmyadmin.* to
|
||||
'pma'@'localhost';
|
||||
do not give any other user rights on this database.
|
||||
+ enter the databasename in $cfg['Servers'][$i]['pmadb']
|
||||
|
||||
|
@@ -12,7 +12,7 @@
|
||||
*/
|
||||
// phpMyAdmin release
|
||||
if (!defined('PMA_VERSION')) {
|
||||
define('PMA_VERSION', '2.3.2-dev');
|
||||
define('PMA_VERSION', '2.3.2');
|
||||
}
|
||||
|
||||
// php version
|
||||
|
@@ -5,7 +5,7 @@
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>phpMyAdmin 2.3.2-dev - Official translators</title>
|
||||
<title>phpMyAdmin 2.3.2 - Official translators</title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {
|
||||
@@ -53,7 +53,7 @@
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<h1 align="center">phpMyAdmin 2.3.2-dev official translators list</h1>
|
||||
<h1 align="center">phpMyAdmin 2.3.2 official translators list</h1>
|
||||
<br />
|
||||
|
||||
<p>
|
||||
|
Reference in New Issue
Block a user