-
Posted to
IIS 7 - FastCGI Module
by
jerotas
on
06-18-2009, 4:09 PM
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: ...
-
Posted to
IIS 7 - FastCGI Module
by
jerotas
on
06-18-2009, 3:59 PM
Never mind, this is because I was pointing to the wrong folder in my open_basedir variable.
-
Posted to
IIS 7 - FastCGI Module
by
jerotas
on
06-18-2009, 3:55 PM
Ok, I went through the tutorial here:
http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/
And when I try to browse a page with only this text on it: <?php phpinfo(); ?>
Or any other PHP page, I get a 500 Internal Server Error. How do I find out what's wrong?
Thank you,
Brian