win7下IIS 用FastCGI模块 配置PHP 共有0条回复
最近用 win7 了,弄了个激活码,也不知道能用到什么时候,心里多少是有点忧虑的,没个底,管他的呢,现在能用就先用着,以前也没玩怎么过Vista,不过感觉 win7 界面上还是有点像Vista的,有些功能上也差不多,不过感觉用这个 win7 还真不错,我也只是相对XP
最近用win7了,弄了个激活码,也不知道能用到什么时候,心里多少是有点忧虑的,没个底,管他的呢,现在能用就先用着,以前也没玩怎么过Vista,不过感觉win7界面上还是有点像Vista的,有些功能上也差不多,不过感觉用这个win7还真不错,我也只是相对XP的感觉,当然了,win7的硬盘空间倒是占用了不老少我19G的C盘装完后就还剩10G多点的可用空间了。昨晚为了能把C盘的ProgramData文件夹和users/crossyou移动到D盘费了我不少劲,一个字“难”,不过现在搞好了,安装应用软件的数据都会保存到D盘的ProgramData文件夹里了,我的用户信息也都保存到了D盘里的users/crossyou文件夹里,方便以后还原了,呵呵,感觉不错。有关教程看看这里吧,当然我没像他说的那样把users文件夹移动到了D盘,我只把我的账户CrossYou移动到了D盘里。
因为可能是没用过Vista的缘故吧,觉得win7里的一个特色就是iis的变化很大(相对xp-os),win7里没有安装iis这一步了,你只需在:控制面板—->程序和功能—->打开或关闭windows功能—->选中iis的相关选项,点击 确定 按钮 就可以了。看来win7实际上已经安装好了iis,我们所要做的只需开启这个功能就ok了。好了iis开启了后,我们在iis下使用fastcgi模块来配置php以使php程序也能在iis下运行。废话到此为止。
更好的教程:http://learn.iis.net/page.aspx/724/install-and-configure-php/
1.下载最新版的Windows Binaries non-thread-safe PHP 压缩包到本地计算机。
2.解压php压缩包里的文件到D:/Program_PHP/php(这是我的php安装目录,你可以安装在你喜欢的位置)。
3.然后将D:/Program_PHP/php里的文件Php.ini-recommended-production重命名为php.ini。
4.用文本编辑器打开php.ini进行如下设置:
a. fastcgi.impersonate = 1
b.cgi.fix_pathinfo=0
c.cgi.force_redirect = 0
d.open_basedir 指向包含 php 程序的网站路径。 (可选项)
e.extension_dir = “./ext”
f.error_log=”D:php_errors.log” (可选项)
g. 打开一些你所需要的扩展,比如 extension=php_mssql.dll等
5.按住alt键,鼠标双击 计算机 打开其属性 单击左侧的 高级系统设置 点击右下角的 环境变量 在 path中设置你的php安装路径。
6.打开Internet信息服务(IIS)管理器,双击 处理程序映射 图标,进入另一个页面。
7.在打开的处理程序映射 面板中 点击 右侧 添加模块映射 按钮 进入一个对话框。
8.具体设置请看下图:
9.点击确定后,返回iis管理首页面,双击默认文档,添加默认文档 index.php
10. 重新启动iis,新建c:/inetpub/wwwroot/phpinfo.php文件 内容为
11. 打开一个浏览器 在地址栏里输入 http://localhost/phpinfo.php 测试PHP
12. 这样在win7下IIS 用FastCGI模块 配置PHP就完成了,本人感觉很简单,也是刚配置好,也不知有啥注意的地方,以前都是用isapi的方式配置php的,感觉用fastcgi比之以前的isapi少了一些步骤,稍微那么简单了一些。
配置好后就可以测试 WordPress 了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.
