Here's the stage:
Linux WhiteBox with Oracle 10g Client (working), & PHP 4.4.0
I'm trying to make the php extensions for Oracle work so I:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-oci8=/home/oracle/OraHome_2/ --enable-sigchild
And it compiles fine, but whenever I try:
$c1 = OCILogon('user','passwd','sumin');
I get this ugly error:
Warning: ocilogon(): _oci_open_server: Error while trying to retrieve text for error ORA-12154 in /usr/local/apache2/htdocs/pruebas/oracle_test2.php on line 2
I checked everything I had to check with the DBA,but the client on the server works fine. I also tried switching PHP versions (5) but with no luck.
Any suggestions?