search
Homephp教程php手册Build apache+php+mysql running environment locally in win10

First download the required software:

Vc2015: https://www.microsoft.com/zh-CN/download/details.aspx?id=48145

Vc2012: http://www.microsoft.com/zh-CN/download/details.aspx?id=30679

Apache2.4: http://www.apachelounge.com/download

PHP: http://windows.php.net/download (Download the thread-safe version, namely Thread Safe)

Mysql: https://downloads.mariadb.com/archives/mysql-5.5/mysql-5.5.27-win32.msi

Install and configureApache

Apache version: Apache2.4.16

Unzip directory: D:PHPApache24

To install Apache2.4.16, you need to install the Visual C++ Redistributable for Visual Studio 2015 runtime library first

(1). The downloaded file is the decompressed file, decompress it and put it in the location where you want to install it.

(2). Open the httpd.conf file under Apache24conf and modify the following key locations:

ServerRoot “D:/PHP/Apache24” (that is, the installation location of Apache);

DocumentRoot “D:/PHP/Apache24/htdocs” (Apache’s default website root directory, which can be adjusted according to your own preferences)

Options to modify the root directory:

Before modification

<directory></directory>
    Options Indexes FollowSymLinks
    AllowOverride null
    Require all granted

After modification

<directory></directory>
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted

#ServerName www.example.com:80 => ServerName 127.0.0.1:80 (remove the # in front)

DirectoryIndex index.html => DirectoryIndex index.html index.php index.htm (we added index.php index.htm)

ScriptAlias ​​/cgi-bin/ "c:/Apache24/cgi-bin/" was changed to

ScriptAlias ​​/cgi-bin/ "d:/PHP/Apache24/cgi-bin/"

=> <directory></directory>

(3). Open cmd and enter the following command line

d: Enter

cd PHPApache24bin to the bin directory in Apache24

httpd press Enter. If there is no prompt, it means the startup is successful

If you want to add Apache24 to the service, run cmd as administrator and enter the following command

d: Enter

cd PHPApache24bin press enter

httpd.exe -k install press enter

(4). Open the browser and enter "http://localhost/" to test. "It works!" is displayed to prove that the configuration is successful.

Install and configure PHP

PHP version: php5.6.14

Installation directory: D:PHPphp56

To install php5.6.14, you need to install the Visual C++ Redistributable for Visual Studio 2012 runtime library

(1). The downloaded file is the unzipped file, unzip it and put it in the location where you want to install it;

(2). Copy php.ini-development and rename it to php.ini

(3). Let Apache24 load the PHP module, open Apache24confhttpd.conf, and add

at the end

LoadModule php5_module "D:/PHP/php56/php5apache2_4.dll"

AddType application/x-httpd-php .php .html .htm

PHPIniDir "D:/PHP/php56" (tell apache the location of php.ini)

(4). Enable several common php extensions, open the php.ini file, and modify the following content:

;extension_dir = "ext" => extension_dir = "D:/PHP/php56/ext" (remove semicolon)

;extension=php_mbstring.dll => extension=php_mbstring.dll

;extension=php_mysql.dll => extension=php_mysql.dll

;extension=php_mysqli.dll => extension=php_mysqli.dll

Note: To enable curl extension under win, libeay32.dll and ssleay32.dll must be placed in the directory included in the PATH environment variable

(5). Restart the Apache server

InstallMysql

Mysql version: mysql5.6.27

Click the file to install it directly.

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

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

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

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

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.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),