Error added: 2006-01-25T22:54:08Z
This error occurs AFAIK with phpPgAdmin >3.5.x and PHP >4.x Solution is simple - add the line below at the beginning of your config.inc.php (just after \"<?php\"). error_reporting(~E_ALL); Warning: it does not solve problem - only masks it.
Find the line(s) causing problems. Comment it out. //return $this->selectSet($sql); Instead of this line put something like: $zwr = $this->selectSet($sql); return $zwr; It may be necessary to repeat this for several occurences in Postgres80.php, as well as in other *.php files in phppgadmin\'s directory.
Find the line(s) causing problems. Comment it out. //return $this->selectSet($sql); Instead of this line put something like: $zwr = $this->selectSet($sql); return $zwr; It may be necessary to repeat this for several occurences in Postgres80.php, as well as in other *.php files in phppgadmin\'s directory.
Incert this: error_reporting(~E_ALL & ~E_STRICT); after this: <?php in da beginning of config.inc.php. It will hide all error messages.
If you know the answer, please add your own solution below.
If you don't know, but find out later, please come back and share your answer - there will be other people
struggling with this too.
If you want to be notified via email when this is solved, enter your email address here: