将wordpress升级到3.0.2后,fastcgi模块中的IIS 7.5错误500

我在以下设置上运行多个WordPress博客:

Server 2008 R2; IIS 7.5; PHP 5.3.3; MySQL 5.0.7;

我今天把我的wordpress安装从2.9.2升级到了3.0.2(在2个不同的站点上),升级进行得很顺利。 我可以没有错误地服务.PHP页面,login到pipe理系统等我可以直接浏览我的博客mywebsite.com/index.php,但是当我尝试去mywebsite.com(没有index.php)我得到他低于500的错误。

我重置IIS,删除并重新附加默认文件,但我没有想法。

如果有人有一个解决scheme,这将是伟大的。

这是我得到的500错误:

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 FastCGI Error Code 0x00000000 Requested URL http://mywebsite.com:80/index.php Physical Path D:\mywebsite.com\index.php Logon Method Anonymous Logon User Anonymous 

谢谢

斯蒂芬

打开你的PHP.ini并寻找“error_log”值。 确保它指向IIS工作进程可以写入的文件。 同时检查“error_reporting”值,并确保它包含“E_ALL”。

之后,打开“error_log”值指向的文件:它应该包含更多关于破坏的信息。

打开IIS – >select你的网站 – >在IIS部分下

错误页面 – > 500 – >编辑function设置 – >“详细的错误”

这就是你将能够看到确切的错误,这可能会帮助你解决你的isuse。

好运:)