Can't access Informix with Php

admin

Administrator
Staff member
I'm trying to access an Informix Online/Unixware with Php.
I sucessfully installed and compiled Informix client in a Linux RH6.1/Apache 1.3.12/Php 4.0.2, cause phpinfo() shows me the Informix section.
I create a simple connection page:

<body>
<?php
$conn = ifx_connect("star@dataserver","user","password");
if(!$conn) {
echo "Not Connected";
} else {
echo "Sucess!!";
}
?>
</body>

But the page keeps giving me a -25588 Informix error.
I configured SQLHOSTS for Php to recognize star, which it does, because if I change the definition, a new error message appears.
I want to know if the problem it's in the Informix Server or in Linux Server, and how to solve it.

Regards,
RoberNet
 
Back
Top