Joomla,当数据库连接失败时我想要一个 500 http 代码

发布于 2024-10-20 13:03:52 字数 260 浏览 5 评论 0原文

如何更改代码,以便每当 Joomla 无法连接到数据库时,http 标头代码为 500 内部服务器错误。目前,它显示一条消息“数据库错误:无法连接到数据库”,但http状态代码为200。

这是在Joomla 1.5 / PHP 5.3.3上

请注意,我不熟悉Joomla,正在编辑别人的代码,所以我不知道 joomla 中的错误处理是如何工作的。

我尝试阅读 ./libraries/joomla/error 处的代码,但我仍然不确定错误消息真正抛出的位置。

How can I change the code so that whenever Joomla fails to connect to the DB, the http header code is 500 Internal Server Error. Currently, it displays a message saying 'Database Error: Unable to connect to database' but the http status code is 200.

This is on Joomla 1.5 / PHP 5.3.3

Please note that I'm not familiar with Joomla, editing someone else's code, so I don't know how error handling in joomla works.

I tried reading the code at ./libraries/joomla/error but I'm still unsure to where the error message is really thrown.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沉睡月亮 2024-10-27 13:03:52
/libraries/joomla/factroy.php

_createDBO 方法中写入错误。

/libraries/joomla/factroy.php

Error is written in _createDBO method.

木緿 2024-10-27 13:03:52

只是这样:

header('HTTP/1.1 500 Internal Server Error', true, 500);

或者如果使用 FastCGI:

header('Status: 500 Internal Server Error', true, 500);

Just this:

header('HTTP/1.1 500 Internal Server Error', true, 500);

or if using FastCGI:

header('Status: 500 Internal Server Error', true, 500);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文