Having problems compiling PHP 5.3.2 pdo_oci.
I have the Oracle instant client installed and even a few other PDO drivers. When I check phpinfo() pdo_oci is listed as being installed along with the others in the PDO section, but under PDO_OCI it's oddly blank -- where I expect to see driver name and version. Via command line, php -m shows it listed in upper case as if it was installed as well. There is no instance of pdo_oci.so in the extensions directory or anywhere else on the server or that matter, so obviously it didn't compile/install nor is it conflicting with an existing version.
No errors during compilation.
All other installed/compiled modules work fine (including OCI8 to Oracle 11g)
Checked in /opt/php-5.3.2/ext/pdo_oci -- source files are there
My platform:
RHEL5
PHP 5.3.2
Oracle Instant Client 11.2 (downloaded linux i386 .zip's and installed client/sdk in /opt/instantclient)
Apache 2.2.3
./configure --with-mcrypt --enable-zip --enable-soap --with-freetype-dir --with-gd --with-jpeg-dir --with-apxs2=/usr/sbin/apxs --with-zlib --enable-bcmath --with-mysql --with-mysqli --enable-mbstring --enable-sigchild --with-pdo-mysql --with-oci8=instantclient,/opt/instantclient --with-pdo-oci=instantclient,/opt/instantclient,11.2
(Paths and version info is correct otherwise configure would have bombed)
Note: I do not want to use the PECL 1.0 version of PDO_OCI it's an older version. I know PHPs native version is experimental.
Hope I gave you enough info to assist. Thank you!
-jim