I took over someone else job, they had the website setup for work already. It connects to an Oracle DB and displays the reults of queries. We recently switched servers so I copied all the files over, installed PHP5(he had PHP4 on the old server) and I setup IIS. My homepage is a php file and it works, the php counter works too. When I try and access a php file that uses the OCIConnect function it displays everything up to the pointi in the file where that function is. I get no errors when I uncheck Show Friendly HTTP Error Messages.
I had learned that I need to recompile PHP so I thought I have Visual Studio at the house if I just need to go in and edit that code somehow.
I heard that I just needed to add extensions to php, I was told to uncomment the lines in the php.ini that say
extension=php_oci8.dll;
extension=php_oracle.dll;
But I did not find them in there so I added them. I then had to download the files from te PECL website. Still does not work. when I run phpInfo() I done see a mention of it installed. What am I doing wrong? I am running Oracle 9.2 BTW.