Home Operation and Maintenance Windows Operation and Maintenance Detailed explanation of how to configure php5.3.3 in Fastcgi mode using Windows+IIS environment

Detailed explanation of how to configure php5.3.3 in Fastcgi mode using Windows+IIS environment

May 27, 2017 am 09:33 AM

Needs to be configured under IIS6.0PHP. Since php 5.3.3 no longer supports isapi configuration, it needs to be configured in fastcgi mode. Let me share my configuration below. configuration process.

I still feel that the configuration of 5.2 and previous versions is more convenient. After using the 5.3 configuration, my apache actually hung up. I don’t know where the problem lies and I haven’t found a solution. In the end, I had to restore it through ghost.
The first step: iis6.0 environment configuration, not much introduction here

The second step: download the windows compressed version of php5.3.3: php-5.3.3 -nts-Win32-VC9-x86.zip
1. Download address: http://windows.php.net/download/, select VC9 x86 Non Thread Safe. Regarding PHP version instructions
2. Unzip php-5.3.3-nts-Win32-VC9-x86.zip to D:\PHP
3. Modify PHP.ini

extension_dir = "D:\php\ext" Points to the path where the "php_*.dll" file is placed in the php folder
magic_quotes_gpc = On If it is Off, it must be opened as On, this is an important step to prevent SQL attacks! Version 5.0 has set On by default.
register_globals=Off is changed to register_globals=On to make passing global variables effective;
short_open_tag =Off, change off to On, this can generally solve the problem of runningInstallationDiscuz! A blank issue appears during the forum

Then look for the following string and remove the semicolon before the code.

extension=php_mb
string
.dll   这个不选的话用phpMyAdmin会出现红色提示
extension=php_dba.dll
extension=php_dbase.dll
extension=php_
file
pro.dll    可选
extension=php_gd2.dll     支持GD库的,一般要滴
extension=php_i
map
.dll               可选
extension=php_ldap.dll
extension=php_
mysql
.dll    支持MySQL的
Copy after login

Next, I modified some file upload and the maximum memory usage limit:

memory_limit = 20M         内存容量
post_max_size = 20M        闪存容量
upload_max_
filesize
 = 20M      附件容量
Copy after login

Step 3: Download and install Microsoft FastCGI Extension for IIS 5.1 and 6.0
2. Install fcgisetup_1.5_rtw_x86.msi
3. Configure fcigext.ini (in the %WINDIR%\system32\inetsrv directory)
Just add the following content at the end of fcigext.ini:

[Types]
php=PHP
[PHP]
ExePath=D:\php\php-cgi.exe   (PHP目录)
Copy after login

4. Configure the FastCGI extension to work with PHP
Right-click "Website" and select "Properties",
Click the "Home Directory" option, click the "Configuration" button ,
Click the "Add" button,
Click "Browse" and search in %WINDIR%\system32\inetsrv fcgiext.dll.
Enter .php in the extension,
Select "Limit to" as the action, enter "GET, HEAD, POST".
Confirm whether "Script Engine" and "Check whether the file exists" are selected.
If not, please select them.
After confirming that everything is correct, click "OK".

Step 4: Write a simple script to test whether PHP FastCGI is working properly.
Create the test.php file in the C:\Inetpub\wwwroot directory, open Test.php, fill in the following content:

<?php 
phpinfo
(); ?>
Copy after login

Save Test.php, restart IIS, and then in the browser address bar Enter localhost/Test.php to see if it is correct.

The above is the detailed content of Detailed explanation of how to configure php5.3.3 in Fastcgi mode using Windows+IIS environment. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1663
14
PHP Tutorial
1266
29
C# Tutorial
1237
24
Can vs code run in Windows 8 Can vs code run in Windows 8 Apr 15, 2025 pm 07:24 PM

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! Apr 17, 2025 pm 09:54 PM

In Laravel development, dealing with complex model relationships has always been a challenge, especially when it comes to multi-level BelongsToThrough relationships. Recently, I encountered this problem in a project dealing with a multi-level model relationship, where traditional HasManyThrough relationships fail to meet the needs, resulting in data queries becoming complex and inefficient. After some exploration, I found the library staudenmeir/belongs-to-through, which easily installed and solved my troubles through Composer.

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

laravel installation code laravel installation code Apr 18, 2025 pm 12:30 PM

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

Can vscode be used on mac Can vscode be used on mac Apr 15, 2025 pm 07:45 PM

VS Code performs well on macOS and can improve development efficiency. The installation and configuration steps include: installing VS Code and configuring. Install language-specific extensions (such as ESLint for JavaScript). Install the extensions carefully to avoid excessive startup slowing down. Learn basic features such as Git integration, terminal and debugger. Set the appropriate theme and code fonts. Note potential issues: extended compatibility, file permissions, etc.

See all articles