vote up 0 vote down star

IIS is literally sending <?php ... ?> code to the browser rather then executing it.

But, only for the root http://domain.com/index.php file.

All other .php files in that folder and index.php files in subfolders execute as expected.

How can I get my root index.php code to execute?


Update: "index.php" is a Default Document of my Web Site...

alt text

flag

65% accept rate

6 Answers

vote up 3 vote down check

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.

link|flag
For the sake of having the information here on Stack Overflow, could you summarize those postings? Thanks. – Thomas Owens Oct 10 '08 at 11:22
I'm using IIS 7. – Zack Peterson Oct 14 '08 at 18:42
vote up 1 vote down

Did you check for the default document in the root?

link|flag
"index.php" is a Default Document of my Web Site – Zack Peterson Oct 9 '08 at 19:53
vote up 2 vote down

It seems you have properly configured your handlers. If you're using <? ... ?> make sure you have short_open_tag = On in your php.ini.

link|flag
Neither <?php tag nor <? short tag code executes. But short_open_tag is on, for what it's worth. – Zack Peterson Oct 9 '08 at 19:59
Have you tried with only <?php echo("Hello"); ?> in the file? Just can't imagine another thing right now. – Eduardo Campañó Oct 9 '08 at 20:19
Tried and failed. – Zack Peterson Oct 9 '08 at 20:38
vote up 1 vote down

Are you sure the PHP extension is loaded?

link|flag
All other .php files in that folder and index.php files in subfolders execute as expected. – Zack Peterson Oct 9 '08 at 20:39
vote up 2 vote down

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.

link|flag
vote up 2 vote down

Tried renaming it to default.php? Just a suggestion :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.