I have an application that I'm converting from PHP4 to PHP5. In one of the scripts I am trying to connect to a remote Oracle database.
What I've noticed is that I can connect perfectly fine on a server running PHP4 and when I test the same script on a server running PHP5 I get an Oracle error of ORA-12541: TNS:no listener.
Both servers are running the same version of Mac OS X Server. The only difference is the PHP version running. I've read the description of ocilogon for PHP5 and it says that ocilogon is an alias for oci_connect. So tried oci_connect and I get the exact same error.
Beyond the difference of the version of PHP I'm running, I can't seem to figure out what might be the problem.
Is there something different with PHP4 and PHP5 oci8 extension?
Any tips to documentation that I can follow through with?
rmb