Configuring Oracle connection in PHP 4.4.8

100 Views Asked by At

Issue is regarding PHP 4.4.8, having trouble in configuring oracle connection (server is IIS8). I tried using php data objects(PDO) it didn't work. I also tried using extension php_oci8.dll

function getConnection()
{
    return $this->createConnection();
}

function createConnection()
{
    return oci_new_connect ("***", "****", "****");
}

getting error: "Call to undefined function: oci_new_connect()"

1

There are 1 best solutions below

0
Felipe Valdes On

review PHP.ini and see if the dll is enabled or even present in the filesystem.