I don't why, but after 6h of searching the bug, I can't identify it. It appear somewhere deep in the framework code when tring to include a dynamic file path.

When I try to do the exctly same include call on a different place, die IIS Error doesn't appear.

phpinfo() works fine, my application not.

The IIS error:

HTTP Error 500.0 - Internal Server Error D:\Program Files (x86)\PHP\v5.3\php-cgi.exe - The FastCGI process exited unexpectedly

Module FastCgiModule Notification ExecuteRequestHandler Handler PHP53_via_FastCGI Error Code 0xc0000005

PHP 5.3.9 nts on IIS 7.5

I already red tons of articles about this error, nothing helped. It's funny, because yesterday everything was fine.

Maybe you can give me a helpful hint.

Edit:

It seems I found the reasons for the problem:

1. After deployment into the Azure cloud, some process adds a whole copy of the php.ini to the end of the existing php.ini file. So I get a lot of warings from php-cgi.

-> This was done by the startup task. I'm wondering why the task now enhances everything instead of overwriting as before.

2. I saw that there is a new PHP Version for Windows 5.3.9 (Build date Jan 10 2012 16:30:15). You can also find it over MS Web Platform Installer. I currently use 5.3.8 (Build date Aug 23 2011 12:11:54). I have it in Program files and also in my WebRole folder. Normally the startup task takes my version out of the WebRole folder but newly it doesn't. When I change the paths over RDP, everthings works well.

Now I just need to find a way to enforce Azure to take the PHP in my package.

link|improve this question

41% accept rate
try to passthrough http errors from the php to see the actual error from the php. Check this post for how to do that: blogs.staykov.net/2010/06/… it may help identifying the issue. Also try enabling errors in the php.ini (i.e. “display_errors=on" and “error_reporting=E_ALL”) – astaykov Jan 20 at 17:12
Did you try showing the actual error following the steps on my blog post? Did you have any success with this issue? – astaykov Jan 21 at 14:22
Have you checked any of the following resources for the same error: bugs.php.net/bug.php?id=45786 forums.iis.net/t/1159556.aspx zen-cart.com/forum/showthread.php?t=133102 – astaykov Jan 21 at 14:32
@astaykov: The PHP errors are already turned on. And can see the real IIS error (s.a.) because I can call the site from the instance (localhost). And I already have have these php.ini settings. I really don't don't want to get back to PHP 5.2. Last week everything was fin with the system. – ownking Jan 23 at 9:03
But this the IIS error. The point is to get to the PHP error. – astaykov Jan 23 at 9:34
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

I found a way to bypass this error. I explained it here: http://blog.itopia.de/windows-azure-custom-php-installation/366

But I still don't know why PHP 5.3.9 create this error and 5.3.8 not...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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