Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to build a simple php app following the guide here. I have setup the SDK for PHP and can build the project fine. When I build the project however the page loads with a 403 error. In the web.config file I have the following for the default document:

<defaultDocument>
  <files>
  <clear/>
    <add value="index.php" />
  </files>
</defaultDocument>

If I take out the clear/ line and rebuild the project the page loads with a 500 internal server error.

Any ideas what could be causing this? Let me know if you need any more info.

share|improve this question

1 Answer

403 is a forbidden page error - you probably aren't allowed to use that <clear/> variable.

500 internal server error usually means an error in your scripting language was thrown causing the script to crash.

You can use online tools to check the syntax of your code to make sure it doesn't contain any errors.

Here's one: http://phpcodechecker.com/

share|improve this answer
Alright well assuming I can't use the <clear/> variable. I still get the 500 error. And there shouldn't be a problem with the code. It's a simple phpinfo script. – sirgawain Apr 14 '12 at 21:40
So all it is, is this: <?php phpinfo(); ?> ? @sirgawain – Ozzy Apr 14 '12 at 21:51
Yes that is all it is. @Ozzy – sirgawain Apr 14 '12 at 21:55
You are required to use <clear/> by IIS in order for the PHP files to be parsed properly. If you removing it there will be the 500 errors you saw previously. It seems more likely that there is a permissions issue somewhere. Try enabling RDP and checking your web permissions. Also check the IIS config azurephp.interoperabilitybridges.com/articles/… – Ben Lobaugh Apr 19 '12 at 16:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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