[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-05-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937


Tim Starling tstarl...@wikimedia.org changed:

   What|Removed |Added

 CC||pierretouz...@yahoo.fr




--- Comment #18 from Tim Starling tstarl...@wikimedia.org  2009-05-08 
07:59:55 UTC ---
*** Bug 18712 has been marked as a duplicate of this bug. ***


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-05-05 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937


Karun Dambiec ka...@fastmail.fm changed:

   What|Removed |Added

   Severity|major   |normal
 Status|NEW |RESOLVED
 Resolution||WONTFIX




--- Comment #17 from Karun Dambiec ka...@fastmail.fm  2009-05-05 06:59:16 UTC 
---
Hi, Unfortunately from the information on
http://www.mediawiki.org/wiki/Manual:PostgreSQL, PostGreSQL 8.1 or later is
needed, and hence a client library that supports PostGreSQL 8.1 or later, and
protocol version 3 or later.

You will need to recompile php to support this version. Ive changed it to
WONTFIX as it does not appear to be a bug with MediaWiki.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-05-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937


Karun Dambiec ka...@fastmail.fm changed:

   What|Removed |Added

 CC||ka...@fastmail.fm




--- Comment #16 from Karun Dambiec ka...@fastmail.fm  2009-05-04 22:19:23 UTC 
---
From looking at this bug, I am not sure if this is actually an issue to do with
Mediawiki. 
Is there a standard or minimum version of Postgresql, that we require? 
As perhaps we should have one, as surely it cannot be expected to create fixes
to allow old versions such as from 2002 to work.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-03-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937





--- Comment #14 from Greg Sabino Mullane g...@turnstep.com  2009-03-23 
13:21:19 UTC ---
 only the version of the DBMS the client library has been compiled with.

This is the key point though: we can't be expected to run against a very, very
old version of Postgres, even if only the client library. Version 7.4, which
introduced PG protocol 3, came out in 2003. Version 7.3 of Postgres came out in
*2002*. If you are working with something that was last updated against
Postgres libraries from 2002 and is speaking PG protocol 2, there *will* be
other problems. Far better to have it error out early with the version
checking, than to limp along and hope that nothing else breaks. To put this in
perspective, in 2002 MySQL version 4 had not even been released yet. Surely
there is a precompiled version of PHP out there newer than that?


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-03-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937


Daniel Ziegenberg daniel.ziegenb...@yahoo.de changed:

   What|Removed |Added

 CC||daniel.ziegenb...@yahoo.de




--- Comment #13 from Daniel Ziegenberg daniel.ziegenb...@yahoo.de  2009-03-16 
13:54:28 UTC ---
Well, in the actual Version (1.14.0) this Bug is still not fixed even though
the source code has changed from the original version in posting #1. I had an
setup of Windows Server 2003 with IIS 6.0 and PHP (description of the Setup can
be found in the Mediawiki Wiki) and PostgreSQL 8.3.6 and it's for shure that
there was nerver ever (neither on the server itself nor in the whole Intranet)
an existing setup of any version of PostgreSQL. The only solution for me was to
hack mediawiki\includes\db\DatabasePostgres.php Line 1073ff. an overwrite it
with

function getServerVersion() {
$versionInfo = pg_version( $this-mConn );
$this-numeric_version = pg_parameter_status( $this-mConn,
'server_version' );
return $this-numeric_version;
}

So is there any hope for a future fix?

Daniel

SarcasmI'm already looking forward to my next setup of mediawiki/Sarcasm


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-03-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937





--- Comment #12 from Etienne Massip etienne.mas...@laposte.net  2009-03-13 
13:01:38 UTC ---
If you take the last comment alone, that is true.
But could you read the whole part of this ticket and try to understand that the
bug is not in the way the DBMS version is rendered in but that this DBMS
version is not the real one, only the version of the DBMS the client library
has been compiled with.
The underlying DBMS version is 8.2, and MediaWiki find a '7.3 or earlier' (see
comment #9). And as Alex stated in comment #1, this make a huge difference as
mw does not support PostGreSQL 7.x. I had to alter the setup to force it.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-03-12 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937


Greg Sabino Mullane g...@turnstep.com changed:

   What|Removed |Added

 CC||g...@turnstep.com




--- Comment #11 from Greg Sabino Mullane g...@turnstep.com  2009-03-12 
15:34:31 UTC ---
Etienne, that's an academic point. If any part of the chain is less than
version 8, the version string will be the least of the problems.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 16937] Windows PHP 5.2.6 precompiled binaries and Postgresql numeric version

2009-03-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=16937


Roan Kattouw roan.katt...@home.nl changed:

   What|Removed |Added

 CC||roan.katt...@home.nl
 AssignedTo|roan.katt...@home.nl|wikibugs-
   ||l...@lists.wikimedia.org




-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l