Php - Ingres,全新安装:如何调试?

发布于 2024-11-28 23:34:21 字数 245 浏览 1 评论 0原文

我刚刚在我的服务器上安装了 Ingres(仅客户端部分,用于连接到现有的 ingres 服务器),我刚刚添加了 php_ingres 模块。

现在 php 识别了我的模块,所以我尝试将自己连接到几个现有的服务器,但我总是

无法连接到数据库(此处为主机名)

但是我找不到问题所在?出现错误? PHP 驱动程序?证书? ...?

我可以做什么来隔离这些问题?

I just finished to install Ingres on my server(only the client part, to connect to an existing ingres server), I just added the php_ingres module.

Now php recognize my module, so I tried to connect my self to several existing servers, but I always a

Unable to connect to database (Hostname here)

But with this I can't find what is wrong?? ingres error? Php driver? Credentials? ...?

What can I do to isolate these problem?

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

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

发布评论

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

评论(1

眼眸里的那抹悲凉 2024-12-05 23:34:21

最有可能的是用户凭据问题。要查看实际的错误消息,请使用以下代码:

$connection = ingres_connect(.....);
if (!is_resource($connection))
{
   trigger_error(ingres_errno()." - ". ingres_error(),E_USER_ERROR);
}

您可能还想查看 http://community .ingres.com/wiki/Ingres_with_Apache_on_Debian_Etch 概述了 Ingres、PHP、Apache 和 Debian/Ubuntu 的设置步骤。

Most likely it's a user credentials issue. To see the actual error message use the following code:

$connection = ingres_connect(.....);
if (!is_resource($connection))
{
   trigger_error(ingres_errno()." - ". ingres_error(),E_USER_ERROR);
}

You might also want to take a look at http://community.ingres.com/wiki/Ingres_with_Apache_on_Debian_Etch which outlines the setup steps for Ingres, PHP, Apache and Debian/Ubuntu.

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