The FastCGI process exited unexpectedly

后端 未结 13 807

I am trying to run PHP via FastCGI on a Windows 2008 server.

I followed this installation doc http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applicati

相关标签:
13条回答
  • 2020-12-24 12:32

    maybe you should try installing VC++ runtime as explained here.

    There's a fairly good chance you're missing the correct VC++ runtime for the version of PHP you're running.

    If you're running PHP 5.5.x you need to ensure the VC++11 runtime is installed:

    http://www.microsoft.com/en-us/download/details.aspx?id=30679

    Make sure you download and install the x86 version (vcredist_x86.exe), PHP on Windows isn't 64 bit yet.

    If you're running PHP 5.4.x then you need to install the VC++9 runtime:

    http://www.microsoft.com/en-us/download/details.aspx?id=5582

    0 讨论(0)
提交回复
热议问题