search
HomeBackend DevelopmentPHP TutorialA brief introduction to building apache php mysql development environment under win7_php skills

Environment directory: E:dev​

1. Apache

Download address: http://www.apachelounge.com/download/

We download the VC11 runtime library

1. Installation instructions:

Run the apache installation program. The method is very simple. After popping up the installation interface, keep "next"

An interface will then appear, requiring you to fill in three fields: Network Domain, Server Name, and Administrator's Email Address. Just fill in whatever you want without affecting the content.

There are 2 options below. The default selection is port 80, and the second one is port 8080. You can choose it according to your personal needs. Generally, the default port is 80.

Let’s continue the installation, select Custom (custom installation)-“next”

There is a component with a red Installed on local hard drive". -"next"

Then select "change" in the lower right corner to change the installation path and install it into the directory just created "D:WAMPApache"-"next"

After the installation is completed, there will be an additional icon in the lower right corner of the computer. Double-click to open it, select start or restart, and it will run normally. The installation is now complete.

2. Modify configuration:

Open the installation record and download the D:WAMPApacheconfhttpd.conf file (it is not recommended to use Notepad when modifying the configuration file, as it may affect it. It is recommended to use Notepad or other editing software to open and modify)

Ctrl F after opening to find the content you want to modify

Add under #LoadModule vhost_alias_module modules/mod_vhost_alias.so:

LoadModule php5_module “D:/WAMP/PHP/php5apache2_2.dll” 
PHPIniDir “D:/WAMP/PHP” 
AddType application/x-httpd-php .php 
AddType application/x-httpd-php .htm 
AddType application/x-httpd-php .html

DocumentRoot “E:/WAMP/Apache/htdocs” 

Modify to (the path here is the same as the wwwroot directory in IIS, used to store web pages, customized or not modified by default): DocumentRoot "D:/WAMP/www"

Modify to (customized or default without modification):

DirectoryIndex index.html

Modify to: DirectoryIndex index.php default.php index.html index.htm default.html default.htm

2. PHP

Download address: http://windows.php.net/download

The latest version is PHP 5.6.11

1. Architecture X86 and X64

2. Safety mode Thread Safe (thread safety) Non Thread Safe (non-thread safety)

Select Thread Safe for apache and Non Thread Safe for IIS

3. Runtime library, VC11​

I am Win7 64-bit, so I choose VC11 x64 Thread Safe (2015-Jul-10 06:25:47)

1. Installation instructions

Since we downloaded the ZIP package, we only need to extract the file to the "D:WAMPPHP" directory

2. Modify configuration

Modify the D:WAMPPHPphp.ini-development file to php.ini
Open php.ini

; extension_dir = “ext”
Modify to: extension_dir = “E:WAMPPHPext”

Remove the ";" in front of these files on line 947
extension=php_curl.dll
extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_pdo_mysql.dll
extension=php_xmlrpc.dll

; date.timezone =
Modify it to (many websites do not mention that it needs to be modified here, and the default is US time. If not modified, an error will be reported): date.timezone = Asia/Shanghai

3. MySQL

Installation method:

1. .msi MSI Installer http://dev.mysql.com/downloads/installer/

2. Unzip and install http://dev.mysql.com/downloads/mysql/

1. Installation instructions:

Open the installer and click "next"
Select custom, the component is the default selection, we will not make any changes - "next"

The path is set to "D:WAMPMysql"-"next"

After installation, click "finish"
A configuration wizard will appear - "next"

Select “Detailed Configuration”-“next”

There are 3 options here:

Developer Machine will use as little memory as possible;
Server Machine, will use a medium amount of memory;
Dedicated MySQL Server Machine, this server only runs the mysql database and will occupy all the memory.

You can choose according to your own needs. Here we choose the second type of "Server Machine" - "next"

Select the database purpose, there are also 3 options:

Mutltifunctional Database is multifunctional and will optimize the database into a good innodb storage type and an efficient myisam storage type;
Transactional Database Only is only used for transaction processing types, the best optimization innodb, but also supports myisam;
Non-Transactional Databse Only non-transaction processing type, suitable for simple applications, only the myisam type that does not support transactions is supported.

Generally choose the first multi-functional one, and we do the same. -"next"

Select the data storage location of InnodDB. Generally, the default is fine. For the sake of unification, I filled in "WAMP/MySQL Datafiles"-"next"

Choose the maximum number of connections allowed by mysql. The first is a maximum of 20 concurrent connections, the second is a maximum of 500 concurrent connections, and the last is custom. You can choose according to your needs. I choose the second - "next"

The following is the port for selecting the database listening port. Generally, the default is 3306. If it is changed to another port, you must remember the modified port when connecting to the database in the future. Otherwise, you cannot connect to the mysql database, which is more troublesome. No modifications are made here. Use The default port of mysq: 3306-"next"

In this step, we set the default encoding of mysql. We choose the third one, and in the Character Set menu, select "gbk" encoding-"next"
(Note: If you want to use data from the original database, it is best to determine what encoding the original database uses. If the encoding set here is inconsistent with the encoding of the original database data, garbled characters may appear when using it.)

This step is whether to set mysql to windows. Generally, you choose to set it to a service, so that you can start and close the mysql database through the service in the future. The checkbox below is also checked, so that in cmd mode, there is no need to go to the bin directory of mysql to execute the command. That is to say, check both the upper and lower boxes, and the middle one defaults to "next"

This step is to set the super user password of mysql. This super user is very important and has all the permissions on mysql. Please set and remember the super user password. There is a checkbox below to select whether to allow the remote machine to use root. Users connect to your mysql server. If you have this requirement, please also check it. Here we use the default selection and enter the password in New root password and Confirm. “next”

Click "execute" to configure, wait for a while, and all the check marks on the dots are marked, which means the configuration is complete.

2. Modify configuration:

Open D:WAMPMySQLmy.ini
Set datadir to D:/WAMP/MySQL/data/ or the directory where you want to store the data.

​4. Memcached

​ Download address: http://blog.couchbase.com/memcached-windows-64-bit-pre-release-available

Directory: dev/​memcached

Installation: Execute from the command line E:devmemcachedmemcached.exe -d install

Start: E:devmemcachedmemcached.exe -d start

php memcache extension download: http://pecl.php.net/package/memcache

​ php.ini opens the extension extension=php_memcache.dll

5. Redis and PHP redis extension

redis download address: https://github.com/MSOpenTech/redis/releases

​php redis extension download address: http://pecl.php.net/package/redis

Put the downloaded php_redis.dll into the php extension directory ext, and then open it in php.ini

6. Ending

Now the PHP environment under Windows 7 has been set up. Let’s use it to your heart’s content.

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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

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 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

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

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.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor