show/hide this revision's text 4 added 46 characters in body

UPDATED: I have found a few possible workarounds for PHP 5 and IIS 7. If those solutions are not working, please provide more details about your index.php, IIS setup, or try to use IIS 6 compatibility.

show/hide this revision's text 3 deleted 526 characters in body

Quote:

The problem stems from the way PHP is installed. On Windows IIS, you can run PHP in two modes

UPDATED: ISAPI and CGI/FastCGI. I had always installed it using ISAPI because, at least in the past, the performance gain was substantial. When running as ISAPI, the PHP processing engine gets loaded when the first PHP page is requested, then it stays in memory. Each subsequent PHP page request is then processed through that pre-loaded image which results in a bit of have found a speed up.

It turns out that recent versions (5.2.5) of few possible workarounds for PHP are pretty unstable under 5 and IIS when running as ISAPI7. For example (and this is why you couldn’t run a WordPress blog in the root of a site) the current If those solutions are not workingdirectory is inconsistent (see bug #42460 , please provide more details about your index.php.

show/hide this revision's text 2 added 798 characters in body

Quote:

The problem stems from the way PHP is installed. On Windows IIS, you can run PHP in two modes: ISAPI and CGI/FastCGI. I had always installed it using ISAPI because, at least in the past, the performance gain was substantial. When running as ISAPI, the PHP processing engine gets loaded when the first PHP page is requested, then it stays in memory. Each subsequent PHP page request is then processed through that pre-loaded image which results in a bit of a speed up.

It turns out that recent versions (5.2.5) of PHP are pretty unstable under IIS when running as ISAPI. For example (and this is why you couldn’t run a WordPress blog in the root of a site) the current working directory is inconsistent (see bug #42460 and bug #44777)

show/hide this revision's text 1