I'm running IIS 7.5 on Windows 7 Ultimate. I've installed PHP Version 5.2.14 using Microsoft Web Platform Installer. I've created a virtual directory and a file with which I can browse it and it returns all the PHP information just fine.

I'm trying to install MantisBT, and when I copy all the file to my virtual directory and browse index.php I receive the following error detail:

Error Summary

HTTP Error 500.0 - Internal Server Error
The page cannot be displayed because an internal server error has occurred.

Detailed Error Information

Module FastCgiModule
Notification ExecuteRequestHandler
Handler PHP_via_FastCGI
Error Code 0x00000000
Requested URL http://localhost:80/mantisbt/index.php
Physical Path V:\wwwroot\mantisbt\index.php
Logon Method Anonymous
Logon User Anonymous

I've changed these in the php.ini file:
fastcgi.impersonate = 1
fastcgi.logging = 0
cgi.fix_pathinfo=1
cgi.force_redirect = 0

The Handler Mappings have this information:
Request path: *.php
Module: FastCgiModule
Executable: C:[Path to PHP installation]\php-cgi.exe
Name: PHP_via_FastCGI

Thank you for any advice on this!!

link|improve this question
feedback

1 Answer

Refer http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-7/

Also try to disable the CPU limit in application pool

link|improve this answer
Thank you for your reply. I had followed the advice from that link and the CPU limit is already disabled. I'm a little perplexed as to why the info.php (the file I created with phpinfo()) works just fine, while the index.php from the MantisBT install returns this error message. Any ideas on that? I wonder if MantisBT is trying to do something that is prevented due to a permissions issue. – user63179 Dec 10 '10 at 15:22
feedback

Your Answer

 
or
required, but never shown

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