Why isn't IIS executing the PHP code of my site root index.php file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T06:04:13Zhttp://stackoverflow.com/feeds/question/188853http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file0Why isn't IIS executing the PHP code of my site root index.php file?Zack Peterson2008-10-09T19:36:55Z2009-09-05T05:45:58Z
<p>IIS is literally sending <code><?php ... ?></code> code to the browser rather then executing it.</p>
<p>But, only for the root <code>http://domain.com/index.php</code> file.</p>
<p>All other .php files in that folder and index.php files in subfolders execute as expected.</p>
<p>How can I get my root index.php code to execute?</p>
<p><hr /></p>
<p>Update: "index.php" is a Default Document of my Web Site...</p>
<p><img src="http://img412.imageshack.us/img412/4130/defaultdocumentmt9.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file/188885#1888851Answer by craigmoliver for Why isn't IIS executing the PHP code of my site root index.php file?craigmoliver2008-10-09T19:44:38Z2008-10-09T19:44:38Z<p>Did you check for the default document in the root?</p>
http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file/188910#1889102Answer by Eduardo Campañó for Why isn't IIS executing the PHP code of my site root index.php file?Eduardo Campañó2008-10-09T19:50:14Z2008-10-09T19:50:14Z<p>It seems you have properly configured your handlers.
If you're using <code><? ... ?></code> make sure you have
<code>short_open_tag = On</code>
in your php.ini.</p>
http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file/189002#1890021Answer by Darryl Hein for Why isn't IIS executing the PHP code of my site root index.php file?Darryl Hein2008-10-09T20:10:24Z2008-10-09T20:10:24Z<p>Are you sure the PHP extension is loaded?</p>
http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file/189386#1893862Answer by Michael Burr for Why isn't IIS executing the PHP code of my site root index.php file?Michael Burr2008-10-09T22:05:53Z2008-10-09T22:05:53Z<p>Have you tried bouncing (stop/restart) IIS? Maybe even restarting the machine? I know there have been times when I've done some IIS configuration changes that I would have sworn should have only needed only a bounce to take effect that didn't get going until a full machine restart.</p>
http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file/190877#1908773Answer by alexandrul for Why isn't IIS executing the PHP code of my site root index.php file?alexandrul2008-10-10T11:18:02Z2008-10-14T21:11:55Z<ul>
<li><a href="http://forums.devshed.com/iis-97/iis-5-1-does-not-run-php-properly-under-root-163070.html" rel="nofollow">IIS 5.1 does not run PHP properly under root directory, but fine in all other folders</a></li>
<li><a href="http://www.simmonsconsulting.com/2008/04/21/running-a-wordpress-blog-in-site-root-using-iis/" rel="nofollow">Running a WordPress blog in site root using IIS</a></li>
</ul>
<p>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 <code>index.php</code>, IIS setup, or try to use IIS 6 compatibility.</p>
<ul>
<li><a href="http://codingforums.com/showthread.php?t=148637" rel="nofollow">Problem with PHP Includes on IIS7</a></li>
<li><a href="http://www.webmasterworld.com/php/3685216.htm" rel="nofollow">PHP5 set-up - Relative paths for includes and other file references</a></li>
</ul>
http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file/1382574#13825742Answer by Ibrah for Why isn't IIS executing the PHP code of my site root index.php file?Ibrah2009-09-05T05:45:58Z2009-09-05T05:45:58Z<p>Tried renaming it to default.php? Just a suggestion :)</p>