Programming Tutorials

PHP ./configure RESULTING IN __rcp_thread_des[email protected]_2_2_3_... AND UNRESOLVED REFERENCES WITH ORACLE OCI8

By: D Presley in PHP Tutorials on 2011-03-25  

FOR SOLVING PHP ./configure RESULTING IN [email protected]_2_2_3_... AND 
UNRESOLVED REFERENCES WITH ORACLE OCI8

KEYWORDS: PHP OCI OCI8 NET8 ./configure __rpc_thred_destroy UNRESOLVED REFERENCES

For building php-4.4.1 or later with oci8, make sure your LD_LIBARRY_PATH has at a minimum the following directories in its path for Oracle8i 8.1.5 or later, Oracle9i 9.0.2 or later, and Oracle9i Release 2: 9.2.0.4 or later, do the following:

Note: We are not using the Oracle Instant Client here. This assumes you have an actual Oracle Installation.

1. Set ORACLE_HOME

Example using Oracle 9i Relase 2 -- 9.2.0.5:

ORACLE_HOME=/opt/app/oracle/product/9iR2

2. Set LD_LIBRARY_PATH with:

LD_LIBRARY_PATH=$ORACLE_HOME/lib: \
$ORACLE_HOME/rdbms/lib:\ 
$LD_LIBRARY_PATH

3. On Unix / Linux, don't forget to export these environment variables:

export ORACLE_HOME LD_LIBRARY_PATH

4. Now, build PHP with the following:

./configure --with-apxs2=<path to Apache 2.0/bin/apxs> --with-oci8=$ORACLE_HOME --enable-sigchild

It should now build correctly. The key with Oracle is to ensure that you pick up the libclntX.so (client librariess) where X is the Oracle version associated with the version your using for instance, in the above example, libclnt9.so

Also note that if your using Oracle 9iAS Release 2 v9.0.2, Oracle 10g iAS Release 1 v9.0.4.1, the above steps will work because ORACLE_HOME will containe all of the libraries necessary. Simply point ORACLE_HOME to the top level directory of these installations and set LD_LIBRARY_PATH as described above.






Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in PHP )

Perl's Encoding::FixLatin equivalent in PHP

PHP ./configure RESULTING IN __rcp_thread_des[email protected]_2_2_3_... AND UNRESOLVED REFERENCES WITH ORACLE OCI8

Decrypting files using GnuPG (GPG) via PHP

How to fix: Warning: Visiting this site may harm your computer - domainameat.cc

error: "Service Unavailable" after installing PHP to a Windows XP x64 Pro

A Tutorial on Timezones and Timestamps

GDBM, NDBM, DB2, DB3, DBM, and CDB Databases in PHP

Warning: session_start(): open .... failed - PHP error

Installing PHP with Apache 2.x on HP UX 11i and configuring PHP with Oracle 9i

Cannot load /usr/local/apache/libexec/libphp4.so into server: ld.so.1:......

Setting up PHP in Windows 2003 Server IIS7, and WinXP 64

Running different websites on different versions of PHP in Windows 2003 & IIS6 platform

Function to return number of digits of an integer in PHP

Function to sort array by elements and count of element in PHP

Function to force strict boolean values in PHP

Latest Articles (in PHP)