phpPgAdmin 和 XAMPP 问题
我想将 phpPgAdmin 4.2.3 与 XAMPP 1.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 是否还有其他软件?
I would like to use phpPgAdmin 4.2.3 in combination with XAMPP 1.7.3 and postgresql-8.4.4.
When I finally managed to get all the files edited in order to run phpPgAdmin and postgresql-8.4.4 all I have after visiting mz http://127.0.0.1/phppgadmin/ is:
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
My error_reporting in php.ini looks like this:
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED
I tried this too:
error_reporting = E_ALL & ~(E_NOTICE | E_DEPRECATED)
Why it's still not working? Is there maybe some other piece of software with Apache and Postgres?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 phpPgAdmin 5.0 版?旧版本适用于 PHP 4.x 版本,使用最新的 PHP 版本会出现问题。
Why don't you use phpPgAdmin version 5.0 ? The older versions are for PHP version 4.x and will have problems with the latest PHP versions.