small fixes

This commit is contained in:
Olivier Müller
2001-07-07 08:38:46 +00:00
parent 24ee2a3c8b
commit 4eae2ff15e
5 changed files with 18 additions and 2 deletions

View File

@@ -25,6 +25,9 @@ phpMyAdmin - Developer's Information
IMPORTANT:
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:
- fetch the current CVS tree over anonymous CVS:
cvs -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin login

13
INSTALL
View File

@@ -22,6 +22,19 @@ phpMyAdmin - Installation
in your browser. phpMyAdmin should now display a welcome screen
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:
+ Be sure to protect the phpMyAdmin-directory. By default, it is not
protected in any way! It shouldn't be readable by anyone and

1
README
View File

@@ -47,6 +47,7 @@ phpMyAdmin - Readme
- create and read dumps of tables
- export and import CSV data
- administer one single database
- communicate in more than 20 different languages
Download:
You can get the newest version at http://phpmyadmin.sourceforge.net/.

View File

@@ -10,7 +10,7 @@
// 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))
$result=ereg("([0-9]).([0-9])",phpversion(),$match);

View File

@@ -3,7 +3,6 @@
require('./grab_globals.inc.php3');
require('./lib.inc.php3');
// Get the host name
if (empty($HTTP_HOST)) {
if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {