php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #24368 OCI8 keeps browser spinning
Submitted: 2003-06-27 15:54 UTC Modified: 2003-06-27 15:58 UTC
From: jefframos at hotmail dot com Assigned:
Status: Not a bug Package: OCI8 related
PHP Version: 4.3.1 OS: Windows
Private report: No CVE-ID: None
 [2003-06-27 15:54 UTC] jefframos at hotmail dot com
Description:
------------
extension=php_oci8.dll
extension=php_oracle.dll

All oci8 functions seem to work even without defining the oracle env. variables(ORACLE_HOME,ORACLE_SID,TNS_ADMIN...etc..), database connection, update and table query and display,..no problem, but the browser keeps on spinning even on ldap functions not using oracle which already been running smoothly. 
When I tried disabling the oci8, spinning stops but my oci8 functions won't work.

I tried defining the ora env. variables(below) at the start of my PHP script but still got the browser spinning.

 PutEnv("ORACLE_SID=PROD");
 PutEnv("ORACLE_HOME=C:\Progra~1\oracle\ora81");
 PutEnv("TNS_ADMIN=C:\Progra~1\oracle\ora81\network\admin");
 PutEnv("LD_LIBRARY_PATH=C:\Progra~1\oracle\ora81\lib");
 PutEnv("NLS_LANG=English_America.WE8ISO8859P1");
 PutEnv("ORA_NLS33=C:\Progra~1\oracle\ora8  
        \common\nls\admin\data");  

Am I missing something with the configuration of PHP on windows using oracle database?
Any other environment variables that needs to be setup?

Thanks in advance for your help. : )


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-06-27 15:58 UTC] edink@php.net
You cannot use both oci and oracle interfaces at the same time due to library conflicts. My suggestion is to use php_oci8.dll.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun May 19 14:01:32 2024 UTC