我想将phpPgAdmin 4.2.3与XAMP1.7.3和postgresql-8.4.4结合使用。
当我最终设法编辑了所有的文件以便运行phpPgAdmin和postgresql-8.4.4时,我在访问mz http://127.0.0.1/phppgadmin/之后所拥有的只有:
Deprecated: Assigning the return value of new by reference is deprecated in D:\Programs\xampp\phpPgAdmin\classes\Misc.php on line 344
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at D:\Programy\xampp\phpPgAdmin\classes\Misc.php:344) in D:\Programs\xampp\phpPgAdmin\libraries\lib.inc.php on line 56
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at D:\Programy\xampp\phpPgAdmin\classes\Misc.php:344) in D:\Programs\xampp\phpPgAdmin\libraries\lib.inc.php on line 56
Warning: Cannot modify header information - headers already sent by (output started at D:\Programs\xampp\phpPgAdmin\classes\Misc.php:344) in D:\Programs\xampp\phpPgAdmin\classes\Misc.php on line 361我在php.ini中的error_reporting如下所示:
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED我也试过了:
error_reporting = E_ALL & ~(E_NOTICE | E_DEPRECATED)为什么它还是不能工作?Apache和Postgres上有没有其他的软件?
发布于 2011-02-05 02:50:26
为什么不使用phpPgAdmin 5.0版?旧版本是针对PHP版本4.x的,在使用最新的PHP版本时会出现问题。
https://stackoverflow.com/questions/4901677
复制相似问题