IIS 7.5 PHP failure “The FastCGI process exited unexpectedly”

前端 未结 9 1066
旧时难觅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:41

    I know its an old thread, but someone might save some headbashing.

    In php.ini, changing

    ; Whether or not to enable the dl() function.  The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    enable_dl = Off
    

    to

    ; Whether or not to enable the dl() function.  The dl() function does NOT work
    ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
    ; disabled on them.
    ; http://php.net/enable-dl
    ;enable_dl = Off
    

    Having enable_dl = Off doesn't work, commenting out the entire line does.

提交回复
热议问题