Home Backend Development PHP Tutorial Installation and configuration method of Windows Apache2.2.11 and Php5.2.9-1_PHP tutorial

Installation and configuration method of Windows Apache2.2.11 and Php5.2.9-1_PHP tutorial

Jul 21, 2016 pm 03:46 PM
windows and Install method use of Configuration

Because pharmar uses Mcafee’s anti-virus software, all programs are required to be installed in Program Files, so these files are placed under D:Program Files for easy management. Mcafee is easy to use when writing protection rules.
Apache installation and configuration

Open apache official website http://archive.apache.org/dist/httpd/binaries/win32/ or mirror website http://apache.mirror.phpchina.com /httpd/binaries/win32/, download the apache_2.2.11-win32-x86-no_ssl.msi installation file inside. Among them, there are two types of the same version: no_ssl and openssl. Openssl has an additional SSL security authentication mode. Its protocol is HTTPS instead of HTTP. This is the difference between a server with SSL and a general web server. Under normal circumstances, it will be ok if we download the no_ssl version.

After downloading the apache installation file, click Install. After three consecutive times of next, you will enter the server information configuration interface, which requires you to enter the network domain, server domain and website administrator’s email address. Ordinary users can follow Just fill in the format. After pressing Next again, an interface for selecting the installation path appears. The default path is relatively long. Pharmar changes the installation path to: "D:Program FilesApache" and continues the installation until it is completed.

After the installation is completed, apache will start automatically. You can test whether apache starts successfully. Enter: http://localhost/ or http://127.0.0.1/ in the browser address bar. If "It works." appears, congratulations, apache has been successfully installed; at the same time, click on the taskbar in the lower right corner of the computer. There is a green apache server running icon.

Apache also has a configuration file: httpd:conf that needs to be configured in order for php to run. The location is: D:Program FilesApacheconf directory. Open httpd:conf:
1), search for "DocumentRoot", this is the directory where the specified homepage is placed. The default is: "D:Program FilesApachehtdocs". You can use the default directory or define one yourself, such as: "D:/PHP". Note: Do not add "/" at the end of the directory.
2) Search for "DirectoryIndex", which is the default home page file name. You can add index.php, etc. after index.html. Leave a space between each type.
3), find

Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all

Modify to:

Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from all

If you don’t change this If so, an error message like You don't have permission to access / on this server. may appear, especially after changing the path of the default homepage.

Note: Every time you modify the httpd:conf file, you must restart the apache server. In addition, if your win32 system is also running an iis server, you must first stop the iis server and then start apache, otherwise the apache server cannot start.

How to install and configure Php

First download the windows version from the official website of php http://www.php.net/downloads.php. There are two Versions: PHP 5.2.9 zip package and PHP 5.2.9 installer. The latest version is 5.3.0. Pharmar uses version 5.2.9. PHP 5.2.9 installer is an automatic installation method. Although it is relatively automated, it is limited in many aspects. Therefore, pharmar does not recommend this method. The following describes the manual installation of PHP 5.2.9 zip package.

1) Unzip the PHP compressed package zip to a directory. Recommended: "C:/PHP", the pharmar is D:Program FilesPhp.
2) Rename the php.ini-dist file in the PHP directory (D:Program FilesPhp) to php.ini. This is the configuration file of PHP. Modify the following places. After modification, change php.ini Copy the file to the C: WINDOWS directory:
extension_dir="D:Program FilesPhpext", pointing to the path where the "php_*.dll" file is placed in the php folder. The paths for PHP4 and PHP5 are different here.
doc_root="D:PHP", points to the homepage location set by apache previously;
default_charset="gb2312", modifies the default character set. Here, if there is a semicolon ";" in front of it, remove the semicolon;
register_globals=Off changed to register_globals=On to make passing global variables valid;
extension=php_dba.dll If there is a semicolon in front, cancel the semicolon, the same as below;
extension=php_dbase.dll
extension =php_gd2.dll GD library for drawing, generally used for graphical verification codes;
extension=php_mysql.dll is used to connect to MYSQL database;
3) Copy the php5ts.dll file in the PHP directory to C:WINDOWSsystem32 Table of contents.
4), finally modify Apache’s httpd.conf file. Add the following 2 lines at the end of the file to install PHP into Apache in module mode:
LoadModule php5_module D:/Program Files/Php/php5apache2_2.dll
AddType application/x-httpd-php .php

Note: The directory path in the first line must be updated to the current version of the apache dynamic link library. For example, here I am using the apache2.2.11 version and php5.2.9, then this file must be php5apache2_2.dll, not php5apache2_2.dll. php5apache.dll, php5apache2.dll, etc. The second line is the suffix of the php script.
In the php4 version, you need to add a line AddType mod_php4.c, but in php5, there is no need for such a line AddType mod_php5.c. php5 has been integrated, otherwise apache cannot start.

The above completes the configuration process of apache and php, restart apache. Create a new file index.php in the server's default directory "D:Program FilesApachehtdocs" and write the following code:
phpinfo();
?>
In the browser address Enter http://127.0.0.1/ or http://localhost/ in the column, and you will see the php version information. So far, php and apache have been successfully installed.

Here is a detail: the directory delimiter in Apache's configuration file httpd.conf is "/", while the directory in PHP's configuration file php.ini requires a backslash " ", don't do it Mixed up.

The installation of MYSQL is simple. Go to the official website http://dev.mysql.com/downloads/mysql/5.0.html, download mysql under the windows platform, select Windows ZIP/Setup.EXE (x86), the latest version is 5.0.77, and download it. Install directly. After the installation is completed, you can enter the configuration wizard and set the mysql database password. Everything is OK.
For the installation and configuration of mysql, please see: phpMyAdmin installation configuration method and problem solving

Errors encountered during the pharmar installation process:
Apache appears after installing PHP under Windows The main reason for the error LoadModule takes two arguments is this sentence in httpd.conf:
LoadModule php5_module D:Program FilesPHPphp5apache2_2.dll
The interpreter treats the spaces in Program Files as the separator of the two parameters. Therefore, spaces cannot appear in the statement.I searched online for a long time and couldn't find a solution. Finally, I solved the problem by using the first-level directory symbol and changed it to the following:
LoadModule php5_module ../php/php5apache2_2.dll
Because apache is installed in the D:Program FilesApache directory Next, PHP is installed in D:Program Filesphp, so ../ means the D:Program Files directory. This is finally solved. I hope everyone will use their brains during the installation and configuration process to find a way.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320246.htmlTechArticleBecause pharmar uses Mcafee’s anti-virus software, all programs are required to be installed in Program Files, so these files are Place it under D:Program Files for easy management. Mcafee is good when writing protection rules...
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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Lossless Scaling on Steam Deck OLED runs games at up to 2x FPS Lossless Scaling on Steam Deck OLED runs games at up to 2x FPS Aug 26, 2024 am 10:07 AM

ETA Prime recently showcased a paid software called Lossless Scaling on ROG Ally X. While it doesn't actually improve the actual gaming performance, the software enhances the experience by adding frame generation and resolution scaling. These two can

How to update the latest version of Bybit Exchange? Will there be any impact if it is not updated? How to update the latest version of Bybit Exchange? Will there be any impact if it is not updated? Feb 21, 2025 pm 10:54 PM

The way to update ByBit exchanges varies by platform and device: Mobile: Check for updates and install in the app store. Desktop Client: Check for updates in the Help menu and install automatically. Web page: You need to manually access the official website for updates. Failure to update the exchange can lead to security vulnerabilities, functional limitations, compatibility issues and reduced transaction execution efficiency.

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

Pi Node Teaching: What is a Pi Node? How to install and set up Pi Node? Pi Node Teaching: What is a Pi Node? How to install and set up Pi Node? Mar 05, 2025 pm 05:57 PM

Detailed explanation and installation guide for PiNetwork nodes This article will introduce the PiNetwork ecosystem in detail - Pi nodes, a key role in the PiNetwork ecosystem, and provide complete steps for installation and configuration. After the launch of the PiNetwork blockchain test network, Pi nodes have become an important part of many pioneers actively participating in the testing, preparing for the upcoming main network release. If you don’t know PiNetwork yet, please refer to what is Picoin? What is the price for listing? Pi usage, mining and security analysis. What is PiNetwork? The PiNetwork project started in 2019 and owns its exclusive cryptocurrency Pi Coin. The project aims to create a one that everyone can participate

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Coinsuper exchange software channel official website entrance Coinsuper exchange software channel official website entrance Feb 21, 2025 pm 10:39 PM

The official website entrance of the Coinsuper Exchange: https://www.coinsuper.com. The client download channels are: Windows client, macOS client, and mobile (iOS/Android). Registration requires an email, mobile phone number and password, and you need to complete real-name authentication before you can trade. The platform provides a variety of digital asset transactions, including Bitcoin, Ethereum, etc., with the transaction fee rate of 0.1% for both orders and acceptors. Security safeguards include cold wallet storage, dual-factor verification, anti-money laundering and anti-terrorism financing measures, and with security public

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

See all articles