readthefuckingmanual.net

[SOLVED] Postgres80.php on line 74

Error added: 2006-01-25T22:54:08Z

1 people waiting for the answer...

4 answers found.

Answer 158 (0.0% helpful)

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.
Permalink

Answer 197 (0.0% helpful)

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.
Permalink

Answer 198 (0.0% helpful)

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.
Permalink

Answer 221 (0.0% helpful)

Incert this:
   error_reporting(~E_ALL & ~E_STRICT);
after this:
<?php

in da beginning of config.inc.php.

It will hide all error messages.
Permalink

Add an answer/solution

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.


Please enter 61948 here

If you want to be notified via email when this is solved, enter your email address here: