Home Backend Development PHP Tutorial Build a php environment under window

Build a php environment under window

Apr 20, 2018 am 10:07 AM
php window build

The content of this article is about building a php environment under window. It has certain reference value. Now I share it with everyone. Friends in need can refer to

The download address and order of independent installation of each module :

  • Apache

  • PHP

  • MySQL


Install Apache:

  • Download apache, select ApacheHaus (convenient for debugging);

  • Select the corresponding operating system, 32-bit or 64-bit;

  • Create a new folder named phpenv on the D drive D:\phpenv \, unzip the downloaded compressed package to this folder (for easy management)

  • Modifyhttpd.confLet serverRoot point to the installation file

  Define SRVROOT "D:/phpenv/Apache24"
Copy after login
  • Enter the installation command

    D:\phpenv\Apache24\bin>httpd -k install
    Copy after login
  • Enter the startup command

    D:\phpenv\Apache24\bin>httpd -k start
    Copy after login
  • Test whether apache is installed success. Enter http://localhost in the browser, and when It works appears, you can write

  • to httpd.conf Enter the PHP support module

# PHP环境添加模块LoadModule php5_module "D:/phpenv/php-5.6.36/php5apache2_4.dll" //php-5.6.36 为php安装目录名PHPIniDir "D:/Program Files/wamp/php-5.6.36/php.ini"# 添加PHP支持AddType application/x-httpd-php .php#添加首页文件类型支持<IfModule dir_module>
    DirectoryIndex index.html index.htm index.php
</IfModule>
Copy after login

Install PHP

  • Download php and select Thread Safe version of PHP, unzip it to D:\phpenv\php-5.6.36\

  • and copy the php.ini-production file Name it php.ini, and enter the file to change ; extension_dir = "./" to extension_dir = "D:/phpenv/php-5.6.12/ext"

    Open the following file (remove the preceding ;)

extension=php_curl.dllextension=php_gd2.dllextension=php_imap.dllextension=php_mbstring.dllextension=php_mysql.dllextension=php_mysqli.dllextension=php_pdo_mysql.dllextension=php_snmp.dllextension=php_soap.dllextension=php_sockets.dll
Copy after login
  • Verify that PHP is installed, enter on the command line: httpd -k restartRestart the service.
    Create a new file phpinfo.php in the D:\phpenv\Apache24\htdocs path, and add the content <?php phpinfo();?>, and then enter http://localhost/phpinfo.php in the browser to test.


Some problems encountered when installing apache

1.

Errors reported here must be corrected before the service can be started.

(OS 10013)以一种访问权限不允许的方式做了一个访问套接字的尝试。  : AH00072: make_sock: could not bind to address [::]:80(OS 10013)以一种访问权限不允许的方式做了一个访问套接字的尝试。  : AH00072: make_sock: could not bind to address 0.0.0.0:80AH00451: no listening sockets available, shutting down

AH00015: Unable to open logs
Copy after login

Cause: The port is occupied.

Method: Modify the Listen and ServerName port numbers in the Apache24\conf\httpd.conf file.

Set 80 to 8080 here


2.

Errors reported here must be corrected before the service can be started.

(OS 10048)通常每个套接字地址(协议/网络地址/端口)只允许使用一次。  : AH00072: make_sock: could not bind to address 0.0.0.0:443AH00451: no listening sockets available, shutting down

AH00015: Unable to open logs
Copy after login

Cause: The listening port is occupied. Since Skype is installed, opening Skype occupies port 443.

Method: Modify httpd-ahssl.conf and httpd-ssl.conf under Apache24\conf\extra.

Change 443 to 442 here.


Reference materials:

apache installation tutorial

apache error

Related recommendations:

## CentOS 7 builds a PHP server environment

Sublime Text3 builds a PHP development environment


The above is the detailed content of Build a php environment under window. 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

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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles