I need to get a pre-written PHP web project to work on IIS. I was able to get the test page running and working, where the only text on the page is:
<?php
phpinfo(); ?>
However, when I run a real PHP page, it breaks on this line:
$ob
= new OutputBuffer;
And this line:
$session
= new Session;
The error for the first one is: PHP Fatal error: Class 'OutputBuffer' not found in C:\inetpub\wwwroot\ohp\act_set_request.php on line 8
Then the same error, but "Session" instead of "OutputBuffer" for the 2nd. So basically, any line that tries to create normal PHP objects (I don't think they're extensions?) breaks. I don't think this is supposed to work this way...please help me get this working. I'm running FastCGI on IIS7 on Vista. Let me know if you need any other info.
Thank you,
Brian
brianh@onehealthport.com