Home Backend Development PHP Tutorial Installation and configuration of Windows PHP5 and Apache_PHP tutorial

Installation and configuration of Windows PHP5 and Apache_PHP tutorial

Jul 21, 2016 pm 03:45 PM
apache http php5 windows one download and Can and Install of program Configuration

1. Download the installation program
Apache can be downloaded from http://www.apache.org/dyn/closer.cgi/httpd/binaries/win32/
PHP can be downloaded from http://www.php.net.
Second installation program
1. Apache program installation is relatively simple. What we downloaded from the website is an installation program under Windows. We can directly double-click to run it, so that we can conveniently install Apache in our settled down on my computer.
2. What we need to pay attention to here is that when downloading PHP, you must download the zip package instead of the Installer. Unzip the PHP package we downloaded to the root directory of the C drive, and unzip it The resulting folder is renamed php.
Three configurations
1. It is best to ensure that php5ts.dll is available no matter what interface (CGI or SAPI) is used, so this file must be placed in the Windows path. The best location is the system directory of Windows:
c:windowssystem for Windows 9x/ME
c:winntsystem32 for Windows NT/2000 or c:winnt40system32 for Windows NT/2000 server version
c:windowssystem32 for Windows XP

 2. The next step is to set a valid PHP configuration file, php.ini. The compressed package includes two ini files, php.ini-dist and php.ini-recommended. It is recommended to use php.ini-recommended because this file optimizes the default settings for performance and security.
Copy the selected ini file to a directory where PHP can find it and rename it to php.ini. PHP searches for php.ini in the Windows directory by default:
 3 Copy the selected ini file to %WINDIR% under Windows 9x/ME/XP, usually c:windows.
 Under Windows NT/2000, copy the selected ini file to %WINDIR% or %SYSTEMROOT%, usually c:winnt or c:winnt40 corresponding to the server version.
 4 Settings for PHP in Apache
There are two ways to make PHP work in Apache under Windows. One is using CGI binaries and the other is using Apache module DLL. Either way, you must first stop the Apache server and then edit httpd.conf to configure Apache and PHP to work together.
If we want to use CGI binaries, then we need to insert the following instructions into Apache's httpd.conf configuration file to set up CGI binaries:
PHP is installed into Apache 2.0 in CGI mode:
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"

If we If you want to use PHP as a module of Apache 2.0, you must move php4ts.dll to winnt/system32 (Windows NT/2000) or windows/system32 (Windows XP), overwriting the original file (if any), for PHP 5 , this file is php5ts.dll. Then we need to insert the following two lines into httpd.conf to install our PHP as Apache's PHP-Module:

  PHP is installed into Apache 2.0 as a module:

; For PHP 4 do something like this:
LoadModule php4_module "c:/php/php4apache2.dll"
AddType application/x-httpd-php .php

; For PHP 5 do something like this:
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php

After this configuration, we have installed our PHP and Apache servers . We can simply test it:

1. Test Apache:

We open the browser and enter localhost in the address bar. If the Apache page can appear, it means that our Apache can work normally. .

2. Test PHP settings:

We can simply write a PHP page. We can use a text editor and enter the following code:

<html>
<head>
<title>
hello
</title>
</head>
<body>
<?php echo "hello,php"; ?>
</body>
</html>

Then save this file as hello.php and place it in Apache’s htdocs directory (we can also change it in the http.conf file directory), and then enter http://localhost/hello.php in our browser. If hello and php can be displayed correctly, it means that our PHP configuration can work normally.

In this way, we can also design our PHP site in the future

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320235.htmlTechArticleA download installer for Apache can be downloaded from http://www.apache.org/dyn/closer.cgi/httpd /binaries/win32/ Download PHP from http://www.php.net. 2. Installation program 1. Apache program installation...
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)

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.

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.

How to quickly configure CentOS HDFS How to quickly configure CentOS HDFS Apr 14, 2025 pm 07:24 PM

Deploying Hadoop Distributed File System (HDFS) on a CentOS system requires several steps, and the following guide briefly describes the configuration process in stand-alone mode. Full cluster deployment is more complex. 1. Java environment configuration First, make sure that the system has Java installed. Install OpenJDK with the following command: yumininstall-yjava-1.8.0-openjdk-devel Configure Java environment variables: echo "exportJAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk">>/etc/profileecho"ex

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.

Zookeeper security configuration guide on CentOS Zookeeper security configuration guide on CentOS Apr 14, 2025 pm 06:24 PM

Detailed explanation of the installation and configuration of ApacheZooKeeper under CentOS system This article introduces in detail how to configure ApacheZooKeeper on CentOS system, covering Java environment installation, ZooKeeper download and decompression, configuration, booting and security configuration. 1. Preparation to install the Java environment: ZooKeeper relies on the Java Runtime Environment (JRE) or Java Development Toolkit (JDK). Recommended to install OpenJDK8 or higher: sudoyumininstalljava-1.8.0-openjdk-devel to download and decompress ZooKeeper: from

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.

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 run in Windows 7 Can vscode run in Windows 7 Apr 15, 2025 pm 07:27 PM

VS Code is still available on Windows 7, but is highly not recommended. Windows 7 lacks security updates and patches, resulting in security risks and VS Code compatibility issues. Although simple code editing is barely competent, it is recommended to upgrade to Windows 10 or later for complex development or for extensions.

See all articles