我刚刚完成在我的服务器上安装Ingres(只有客户端部分,连接到现有的ingres服务器),我刚刚添加了php_ingres模块。
现在php识别我的模块,所以我尝试将自己连接到几个现有服务器,但我总是
无法连接到数据库(此处为主机名)
但有了这个我找不到有什么问题? ingres错误? Php司机?证书? ...?
我可以做些什么来隔离这些问题?
答案 0 :(得分:1)
很可能是用户凭据问题。要查看实际的错误消息,请使用以下代码:
$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的设置步骤。