From da903b535671cf6d56ca00b4cf0ee0f5c8f19c38 Mon Sep 17 00:00:00 2001
From: chriskl
Date: Thu, 18 Sep 2003 08:07:04 +0000
Subject: [PATCH] final commits before 3.1rc-1
---
BUGS | 3 +++
FAQ | 11 +++++++++++
HISTORY | 8 ++++++++
INSTALL | 6 +++---
LICENSE | 2 +-
TODO | 1 +
groups.php | 6 +++---
libraries/lib.inc.php | 4 ++--
8 files changed, 32 insertions(+), 9 deletions(-)
diff --git a/BUGS b/BUGS
index e69de29b..a16d203a 100644
--- a/BUGS
+++ b/BUGS
@@ -0,0 +1,3 @@
+disallow logins as pgsql and postgres?
+accessibility
+
diff --git a/FAQ b/FAQ
index eaa5b05f..d1f1fbca 100644
--- a/FAQ
+++ b/FAQ
@@ -12,6 +12,17 @@ A: This means that you have not properly compiled PostgreSQL support into
your PHP. The correct configure flag to use is '--with-pgsql'. Read the
PHP manual and website for more help with this.
+ Under Windows, you cannot easily recompile PHP. In this case, open your
+ php.ini file (usually in C:\WINDOWS or C:\WINNT) and change this line:
+
+ ;extension=php_pgsql.dll
+
+ to:
+
+ extension=php_pgsql.dll
+
+ and then restart your web server.
+
Q: I always get "Login failed" even though I'm _sure_ I'm using the right
username and password.
diff --git a/HISTORY b/HISTORY
index 080bc79f..89f67145 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,14 @@
phpPgAdmin History
------------------
+Version 3.1-rc-1
+----------------
+
+Bug Fixes
+* Table browsing for != 7.3
+* SQL window improvements
+* Translation improvements
+
Version 3.1-beta-1
------------------
diff --git a/INSTALL b/INSTALL
index 7429883a..102fb5f8 100644
--- a/INSTALL
+++ b/INSTALL
@@ -7,7 +7,7 @@ phpPgAdmin Installation Guide
2. Configure phpPgAdmin
- edit phppgadmin/conf/config.inc.php
+ edit phpPgAdmin/conf/config.inc.php
If you mess up the configuration file, you can recover it from the
config.inc.php-dist file.
@@ -18,8 +18,8 @@ phpPgAdmin Installation Guide
the 'sql' subdirectory and view the SQL script for your database. It
will contain instructions on how to set up the reports database.
-4. Browse to the phpPgAdmin installation using a web browser. You must
- have cookies enabled for phpPgAdmin to work.
+4. Browse to the phpPgAdmin installation using a web browser. You might
+ need cookies enabled for phpPgAdmin to work.
5. IMPORTANT - SECURITY
diff --git a/LICENSE b/LICENSE
index 881874af..8380c277 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2002, 2003 The PhpPgAdmin Project
+Copyright (c) 2002, 2003 The phpPgAdmin Project
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/TODO b/TODO
index 94d59d40..8021be32 100644
--- a/TODO
+++ b/TODO
@@ -128,6 +128,7 @@ Exotic
* Support contrib/tsearch2 for easy full text indexes
* -Search for object feature (chriskl)
* Pivot reports (ADODB has a feature for this)
+* Parameratised reports (use prepared queries)
Principles
----------
diff --git a/groups.php b/groups.php
index ac8ae8a9..299d9e67 100644
--- a/groups.php
+++ b/groups.php
@@ -3,7 +3,7 @@
/**
* Manage groups in a database cluster
*
- * $Id: groups.php,v 1.12 2003/08/08 06:12:28 chriskl Exp $
+ * $Id: groups.php,v 1.13 2003/09/18 08:07:04 chriskl Exp $
*/
// Include application functions
@@ -88,7 +88,7 @@
else echo "{$lang['strnousers']}
\n";
// Display form for adding a user to the group
- echo "\n";
+ echo "
\n";
echo "{$lang['strshowallgroups']}
\n";
}
diff --git a/libraries/lib.inc.php b/libraries/lib.inc.php
index d1b2b9f0..190420a1 100644
--- a/libraries/lib.inc.php
+++ b/libraries/lib.inc.php
@@ -3,7 +3,7 @@
/**
* Function library read in upon startup
*
- * $Id: lib.inc.php,v 1.61 2003/09/11 03:30:19 chriskl Exp $
+ * $Id: lib.inc.php,v 1.62 2003/09/18 08:07:05 chriskl Exp $
*/
// Set error reporting level to max
@@ -13,7 +13,7 @@
$appName = 'phpPgAdmin';
// Application version
- $appVersion = '3.1-beta-1';
+ $appVersion = '3.1-rc-1';
// Check to see if the configuration file exists, if not, explain
--
2.39.5