预装 PHP 的 Webmatrix

发布于 2024-11-15 04:28:49 字数 63 浏览 5 评论 0原文

我已经安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画中仙 2024-11-22 04:28:49

WebMatrix 使用 IIS Express Web 服务器(IIS Express 与 WebMatrix 一起安装),并且您需要配置 IIS Express 以使用已安装的 PHP。从 IIS Express 安装文件夹 (%programfiles%\IIS Express) 运行以下两个命令并重新启动 WebMatrix。

  1. appcmd.exe 设置配置 /section:system.webServer/fastCGI //[fullPath='c:{php_installation-folder}\php-cgi.exe']

  2. 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.

  1. appcmd.exe set config /section:system.webServer/fastCGI /+[fullPath='c:{php_installation-folder}\php-cgi.exe']

  2. 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']

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文