From: [EMAIL PROTECTED]
Operating system: aix433
PHP version: 4.0.4
PHP Bug Type: Oracle related
Bug description: ora-01034 when accessing remote SID
I get an ora-01034 trying to connect to a remote oracle 8.1.6.0.0 database. everything
works fine for local databases. I can access the remote database with sqlplus, but not
with php.
configure line:
./configure --with-oracle=$ORACLE_HOME \
--with-oci8 \
--enable-discard-path \
--without-mysql \
--enable-track-vars
code from the script:
$ORACLE_HOME="/appl/ora/product/7.3.4.3.0";
$ORACLE_SID="X010";
PutEnv "ORACLE_HOME=$ORACLE_HOME");
PutEnv "ORACLE_SID=$ORACLE_SID");
$connection = OCILogon "scott","tiger");
if ($connection == false){
echo OCIError($connection; exit;
}
--
Edit Bug report at: http://bugs.php.net/?id=8673&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]