search
HomeBackend DevelopmentPHP TutorialInstallation and configuration of PHP5 and Apache under Windows_PHP tutorial

Installation and configuration of PHP5 and Apache under Windows_PHP tutorial

Jul 21, 2016 pm 04:12 PM
apachephp5windowwindowsone timeDownandintroducebyandInstallofConfiguration

Here we take PHP5 as an example to introduce the installation and configuration methods of Apache and PHP5 under Windows.

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.

2. 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 easily install Apache on our computer. Coming.

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 which interface (CGI or SAPI) is used, so this file must be placed in the Windows path. The best location is the Windows system directory:

c:windowssystem for Windows 9x/ME
c:winntsystem32 for Windows NT/2000 or c:winnt40system32 for Windows NT/2000 Server Edition
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 of PHP in Apache

There are two ways to make PHP work with 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 installed into Apache 2.0 via CGI:

ScriptAlias ​​/php/ "c:/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"

If we want to use PHP as a module of Apache 2.0, then we 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 appears, 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, place it in Apache’s htdocs directory (we can also change this directory in the http.conf file), and then enter http:// in our browser /localhost/hello.php, 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/313719.htmlTechArticleHere we take PHP5 as an example to introduce the installation and configuration methods of Apache and PHP5 under Windows. 1. Download the installation program for Apache from http://www.apache.org/dyn/closer.cgi/httpd/binaries/win32...
Statement
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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

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 Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.