ID:               31038
 User updated by:  damien dot harper at keops dot net
 Reported By:      damien dot harper at keops dot net
-Status:           Assigned
+Status:           Closed
 Bug Type:         OCI8 related
 Operating System: Red Hat 8
 PHP Version:      4.3.10RC2
 Assigned To:      tony2001
 New Comment:

Well, I found what was wrong !
I must run apache with user oracle and group oinstall (oracle has been
installed with oracle user in oinstall group)

Now everything is OK, thanks for your replies ;-)


Previous Comments:
------------------------------------------------------------------------

[2004-12-15 03:59:49] [EMAIL PROTECTED]

I bet it's still the same issue as always: missing environment variable
definitions for webserver. (as it works fine with CLI..)


------------------------------------------------------------------------

[2004-12-14 22:00:40] [EMAIL PROTECTED]

Give me some time for testing.
ATM I can tell only that Apache2 is not recommended for production
environment and this will not be changed in the nearest future. At
least, you should use prefork if you have to stick with Apache2.

------------------------------------------------------------------------

[2004-12-14 19:52:14] damien dot harper at keops dot net

I'd prefer to stick with 4.x.x branch for compatibility.
It will be used on a production server and we can't loose time to check
that everything is OK with PHP 5.x now.

Nobody has any idea how to solve this trouble ?

------------------------------------------------------------------------

[2004-12-14 19:33:33] [EMAIL PROTECTED]

Are you able to try latest release from 5.0.x branch?

------------------------------------------------------------------------

[2004-12-14 18:57:24] damien dot harper at keops dot net

Wooops, I forgot the interesting part of the included file
fonctionsDb.php :

<?php 
...
function connection(){
        global $errorCode,$test;

        $host = "172.16.0.7";
        $port = "1521";
        $service = "ORACLE9";
        $user = "sirenet";
        $pwd = "sirenet";
        $db="(DESCRIPTION=(ADDRESS_LIST=
            (ADDRESS=(PROTOCOL=TCP)
              (HOST=$host)(PORT=$port)
            )
          )
           (CONNECT_DATA=(SERVICE_NAME=$service))
     )";

        if ($test==1){
                $conn = ocilogon($user,$pwd,$db);
        } else {
                $conn = @ocilogon($user,$pwd,$db);
        }
        if ($conn==""){
                $errorCode = 2;
        }
        return $conn;
}

function deconnection($conn){
        ocilogoff($conn);
}
...
?>

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/31038

-- 
Edit this bug report at http://bugs.php.net/?id=31038&edit=1

Reply via email to