IIS7.5中配置PHP运行环境全程实录
一.安装前准备好要用到的文件
mysql-essential-5.1.40-win32.msi (MySql数据库安装文件)
php-5.2.0-Win32.zip (PHP代码解析器)
phpMyAdmin-3.1.3.1-all-languages.zip(MySql数据库管理程序)
WordPressURLRewrite-1.1.zip (WP的URL重写组件)
ZendOptimizer-3.3.3-Windows-i386.exe(PHP加速器)
截图如下:
二.安装MySql
第一步,选择“自定义”,可自定义数据库文件安装路径
我选择安装数据库文件到“E:\MySqlData”目录下
第二步,配置MySql基本参数,选择“详细配置”
选择“服务器模式”
选择“支持多功能数据库”
默认下一步,端口可自已设置,保证未被占用就行
下一步设置最大权限用户名和密码
下一步等待安装,安装完了后它是自动启用MySql服务
完装MySql完成
三.安装PHP代码解析器,并让IIS支持PHP程序
第一步,解压“php-5.2.0-Win32.zip”到“D:\php”,你也可以放到其它路径,将"D:\php\php.ini-dist"文件复制一份到“C:\windows\php.ini”(改名为php.ini),并且配置PHP,将D:\php下的php.ini-list文件名更改为php.ini,打开php.ini进行配置。
先修改extension_dir,它的目录指向必须准确,即extension_dir = "d:/php/ext",找到register_globals = Off 修改为On,再定位到Windows Extensions将以下常用的dll文件开启,开启的方法就是将前边的分号;去掉即可
extension=php_bz2.dll
extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_pdo_mysql.dll
extension=php_pdo_odbc.dll
extension=php_xmlrpc.dll(注意如果加上了extension=php_curl.dll我这里会出错显示FastCGI 进程意外退出禁用后正常)
找到disable_functions =,修改为:
disable_functions =phpinfo,passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,pfsockopen,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server
保存好后,同时将php.ini复制到c:\windows下一份。
配置 session.save_path 目录,记得要建立 tmp 目录
session.save_path = "D:/php/tmp"
第二步,打开IIS管理器
新建应用程序池,版本选“无托管代码”,管道模式选“经典”
高级设置,注意了要启用32位应用程序(就这个小细节让我弄了3个小时找不到原因)
第三步,添加网站,记住应用程序池选择刚才添加的“ForPHP”
默认文档,添加“default.php”和“index.php”
设置“处理程序映射”,添加脚本映射
设置完成这一步就可以支持PHP程序了
四.PHP中支持MySql
有些系统安装完MySql后PHP并不能检测到MySql的存在,所以要将mysql/bin下的.libmySQL.dll复制到windows/system32里...

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

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,

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

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.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

In PHP, you can effectively prevent CSRF attacks by using unpredictable tokens. Specific methods include: 1. Generate and embed CSRF tokens in the form; 2. Verify the validity of the token when processing the request.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.
