预装 PHP 的 Webmatrix
我已经安装了 PHP 5.3.6,有没有办法让 WebMatrix 使用已安装的 PHP?
谢谢
I already have PHP 5.3.6 installed, is there a way to direct WebMatrix to make use of the installed PHP?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WebMatrix 使用 IIS Express Web 服务器(IIS Express 与 WebMatrix 一起安装),并且您需要配置 IIS Express 以使用已安装的 PHP。从 IIS Express 安装文件夹 (%programfiles%\IIS Express) 运行以下两个命令并重新启动 WebMatrix。
appcmd.exe 设置配置 /section:system.webServer/fastCGI //[fullPath='c:{php_installation-folder}\php-cgi.exe']
appcmd.exe 设置配置/section:system.webServer/handlers /+[name='PHP_via_FastCGI',path='.php',verb='',modules='FastCgiModule',scriptProcessor='c:{php_installation-文件夹}\php-cgi.exe',resourceType='未指定']
WebMatrix uses IIS Express webserver (IIS Express gets installed along with WebMatrix) and you need to configure IIS Express to use installed PHP. Run the following two commands from IIS Express installation folder (%programfiles%\IIS Express) and restart WebMatrix.
appcmd.exe set config /section:system.webServer/fastCGI /+[fullPath='c:{php_installation-folder}\php-cgi.exe']
appcmd.exe set config /section:system.webServer/handlers /+[name='PHP_via_FastCGI',path='.php',verb='',modules='FastCgiModule',scriptProcessor='c:{php_installation-folder}\php-cgi.exe',resourceType='Unspecified']