small fixes
This commit is contained in:
@@ -25,6 +25,9 @@ phpMyAdmin - Developer's Information
|
|||||||
|
|
||||||
IMPORTANT:
|
IMPORTANT:
|
||||||
With 1.4.1, development has switched to CVS.
|
With 1.4.1, development has switched to CVS.
|
||||||
|
|
||||||
|
Public CVS Web access: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmyadmin/
|
||||||
|
|
||||||
The following method is preferred for new developers:
|
The following method is preferred for new developers:
|
||||||
- fetch the current CVS tree over anonymous CVS:
|
- fetch the current CVS tree over anonymous CVS:
|
||||||
cvs -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin login
|
cvs -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin login
|
||||||
|
13
INSTALL
13
INSTALL
@@ -22,6 +22,19 @@ phpMyAdmin - Installation
|
|||||||
in your browser. phpMyAdmin should now display a welcome screen
|
in your browser. phpMyAdmin should now display a welcome screen
|
||||||
and your databases.
|
and your databases.
|
||||||
|
|
||||||
|
Bookmarks:
|
||||||
|
To use the new bookmarks feature, you will have to create a new
|
||||||
|
db and table on your system, and to type the informations in
|
||||||
|
config.ini.php3. Table definition:
|
||||||
|
|
||||||
|
CREATE TABLE bookmark (
|
||||||
|
id int(11) DEFAULT '0' NOT NULL auto_increment,
|
||||||
|
dbase varchar(255) NOT NULL,
|
||||||
|
label varchar(255) NOT NULL,
|
||||||
|
query text NOT NULL,
|
||||||
|
PRIMARY KEY (id)
|
||||||
|
);
|
||||||
|
|
||||||
Installation notes:
|
Installation notes:
|
||||||
+ Be sure to protect the phpMyAdmin-directory. By default, it is not
|
+ Be sure to protect the phpMyAdmin-directory. By default, it is not
|
||||||
protected in any way! It shouldn't be readable by anyone and
|
protected in any way! It shouldn't be readable by anyone and
|
||||||
|
1
README
1
README
@@ -47,6 +47,7 @@ phpMyAdmin - Readme
|
|||||||
- create and read dumps of tables
|
- create and read dumps of tables
|
||||||
- export and import CSV data
|
- export and import CSV data
|
||||||
- administer one single database
|
- administer one single database
|
||||||
|
- communicate in more than 20 different languages
|
||||||
|
|
||||||
Download:
|
Download:
|
||||||
You can get the newest version at http://phpmyadmin.sourceforge.net/.
|
You can get the newest version at http://phpmyadmin.sourceforge.net/.
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
// PMA_WINDOWS (bool) - mark if phpMyAdmin running on windows server
|
// PMA_WINDOWS (bool) - mark if phpMyAdmin running on windows server
|
||||||
|
|
||||||
|
|
||||||
define("PHPMYADMIN_VERSION", "2.2.0rc1");
|
define("PHPMYADMIN_VERSION", "2.2.0rc2");
|
||||||
|
|
||||||
if (!ereg("([0-9]).([0-9]).([0-9])", phpversion(), $match))
|
if (!ereg("([0-9]).([0-9]).([0-9])", phpversion(), $match))
|
||||||
$result=ereg("([0-9]).([0-9])",phpversion(),$match);
|
$result=ereg("([0-9]).([0-9])",phpversion(),$match);
|
||||||
|
@@ -3,7 +3,6 @@
|
|||||||
require('./grab_globals.inc.php3');
|
require('./grab_globals.inc.php3');
|
||||||
require('./lib.inc.php3');
|
require('./lib.inc.php3');
|
||||||
|
|
||||||
|
|
||||||
// Get the host name
|
// Get the host name
|
||||||
if (empty($HTTP_HOST)) {
|
if (empty($HTTP_HOST)) {
|
||||||
if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {
|
if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {
|
||||||
|
Reference in New Issue
Block a user