IIS 7.5 PHP failure “The FastCGI process exited unexpectedly”

前端 未结 9 1055
旧时难觅i
旧时难觅i 2020-12-14 07:48

I\'ve been attempting to get PHP working with IIS 7.5 and have hit a bit of a roadblock. Whenever I try to load the page I get the following error:

\"HTTP Error 500.

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-14 08:45

    It seems that there are some dll extension in your php which are not work properly and force the CGI closed. Try to comment every extensions in php.ini file and see whether the error will exist or not.

    [EDIT 1]

    After some struggles I found out that the IIS is non thread safe web server and all the extension which you want to use in php for IIS should used nts lib for compiling. If the extension compile with thread safe library and add to IIS the IIS would not start. In this case your extension in thread safe(used in apache I guess) and should not add as an extension in IIS

提交回复
热议问题