Why isn't IIS executing the PHP code of my site root index.php file? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T06:04:13Z http://stackoverflow.com/feeds/question/188853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188853/why-isnt-iis-executing-the-php-code-of-my-site-root-index-php-file 0 Why isn't IIS executing the PHP code of my site root index.php file? Zack Peterson 2008-10-09T19:36:55Z 2009-09-05T05:45:58Z <p>IIS is literally sending <code>&lt;?php ... ?&gt;</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#188885 1 Answer by craigmoliver for Why isn't IIS executing the PHP code of my site root index.php file? craigmoliver 2008-10-09T19:44:38Z 2008-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#188910 2 Answer 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:14Z 2008-10-09T19:50:14Z <p>It seems you have properly configured your handlers. If you're using <code>&lt;? ... ?&gt;</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#189002 1 Answer by Darryl Hein for Why isn't IIS executing the PHP code of my site root index.php file? Darryl Hein 2008-10-09T20:10:24Z 2008-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#189386 2 Answer by Michael Burr for Why isn't IIS executing the PHP code of my site root index.php file? Michael Burr 2008-10-09T22:05:53Z 2008-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#190877 3 Answer by alexandrul for Why isn't IIS executing the PHP code of my site root index.php file? alexandrul 2008-10-10T11:18:02Z 2008-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#1382574 2 Answer by Ibrah for Why isn't IIS executing the PHP code of my site root index.php file? Ibrah 2009-09-05T05:45:58Z 2009-09-05T05:45:58Z <p>Tried renaming it to default.php? Just a suggestion :)</p>