I've been reading "The Underground PHP and Oracle Manual" but all of their examples and discussions assume that the Oracle DB is on localhost. My script has to tunnel through a firewall (I had sys punch me a hole) and connect to a db server. Using the same information (i.e. IP:port/SID, uname, pass) that works with SQL Developer, my script:
- Code: Select all
$c=oci_connect('User','Pass','xx.xx.xx.xx:1521/DEMO')
stops my script... DEAD! No errors. No info.
Any ideas on how I can solve this mystery? I greatly appreciate any help.

