search
HomeBackend DevelopmentPHP TutorialA brief introduction to building apache php mysql development environment under win7, win7apache_PHP tutorial

A brief introduction to building apache php mysql development environment under win7, win7apache

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 3 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 for 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"

This step sets 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, it is set to a service, so that the mysql database can be started and closed 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.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1044257.htmlTechArticleA brief introduction to building apache php mysql development environment under win7, win7apache environment directory: E:dev 1. Apache download address: http://www.apachelounge.com/download/ We download the VC11 runtime library...
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
Win7系统中如何处理IP地址冲突问题? 三种解决Win7显示IP地址冲突的方法Win7系统中如何处理IP地址冲突问题? 三种解决Win7显示IP地址冲突的方法Dec 21, 2023 pm 05:21 PM

IP地址冲突,这还算是比较常见的网络问题,最近被还在使用Win7系统的用户遇到了,当同一网络上的两台或多台设备分配了相同的IP地址时,就会发生IP地址冲突,这篇文章是本站给大家带来的解决IP地址冲突问题方法。方法一:1、按【Win+R】组合键,打开运行,并输入【cmd】命令,按【确定或回车】,可以快速打开命令提示符窗口(建议使用管理权限创建此任务);2、管理员命令提示符窗口中,输入【ipconfig/release】命令,可以用来释放当前的IP地址,而输入【ipconfig/renew】命令,可

10代cpu支持win7系统吗10代cpu支持win7系统吗Feb 22, 2023 pm 04:38 PM

10代cpu支持win7系统。10代cpu搭配的400、500系列主板可以安装win7,安装的前提条件是必须关闭“安全启动”和有独显的情况开启csm兼容模式;但有些主板己经没有支持传统模式以及兼容模式的选项了,此时还需要更换主板。

如何打开摄像头 教你Win7摄像头怎么打开如何打开摄像头 教你Win7摄像头怎么打开Jan 11, 2024 pm 07:48 PM

相信有用户遇到这么一个问题了,win7系统却找不到摄像头快捷在哪,只能从程序里面调出摄像头功能,不知道内情的人还以为是摄像头的驱动没有安装呢,因此给有需要的win7用户在使用摄像头的时候制造了不小的麻烦。下面,小编就来给大家带来了Win7摄像头的打开教程了。使用笔记本电脑的用户都晓得笔记本自带有摄像头功能,不像台式电脑需要连接摄像头,在笔记本win7系统中直接打开摄像头就可以使用,非常方便。不过有用户一般的情况下都没有去摸索,尝试很多方法还是失败,下面,小编就来跟大家说说Win7摄像头的打开方法

win7电脑喇叭显示红叉怎么办win7电脑喇叭显示红叉怎么办Mar 07, 2023 am 11:54 AM

win7电脑喇叭显示红叉的解决办法:1、在电脑桌面上找到“计算机”图标,单击鼠标右键选择“管理”;2、在左侧系统工具中单击选择“设备管理器”选项;3、在中间设备管理器选项中,单击展开“声音、视频和游戏控制器”选项;4、选中“Realtek High Definition Audio”,单击鼠标右键选择“启用”即可。

win7电脑没有NVIDIA控制面板怎么解决win7电脑没有NVIDIA控制面板怎么解决Nov 01, 2022 pm 01:48 PM

win7电脑没有NVIDIA控制面板的解决办法:1、打开电脑;2、打开“控制面板”,然后找到“NVIDIA控制面板”;3、打开“NVIDIA控制面板”设置中的“添加桌面上下文菜单”这个选项即可。

win7检测不到第二个显示器怎么办win7检测不到第二个显示器怎么办Mar 13, 2023 am 11:40 AM

win7检测不到第二个显示器的解决办法:1、打开“控制面板”并选择“硬件和声音”;2、点击“设备打印机”中的“设备管理器”;3、通过“监视器”来查看是否有第二部显示器连接;4、回到桌面,右击鼠标,选择“屏幕分辨率”;5、选择合适自己显示器的刷新频率,再点击“应用”;6、重新对第二个显示器进行检测或显示即可。

罗技驱动win7能用吗罗技驱动win7能用吗Jan 15, 2024 am 11:45 AM

罗技驱动在最新的系统Win11中兼容良好。对于一些用户好奇的老旧系统Win7,也可以放心使用,因为罗技驱动同样兼容Win7系统。罗技驱动win7能用吗:答:罗技驱动win7能用。罗技驱动无论什么系统都可以兼容,罗技是国际知名品牌,它的驱动非常全面。罗技驱动的主要界面:1、软件主界面在左边,三个按钮依次是灯光,按键,灵敏度设置。在灯光界面的设置中,特效比较常规,而音频视觉效果是亮点。它可以根据声音频率变色,根据高、中、低音频段进行不同的颜色和效果设置。3、按键设置中,用户可以根据自己有什么特殊要求

Win7任务管理器pid怎么显示出来 小编教你怎么显示出来Win7任务管理器pid怎么显示出来 小编教你怎么显示出来Jan 11, 2024 pm 07:00 PM

很多朋友可能对于pid标识符还比较陌生,可以在任务管理器里进行查看。但是有些用户打开任务管理器时找不到PID标识符,其实如果用户想查看进程PID标识符的话,需通过对“任务管理器”相关设置就可以看到了,下面小编就以win7系统为例查看进程PID标识符的方法。PID标志符是windows操作系统对运行的程序的自动分配的一个独一无二的顺序编号,进程中止后PID被系统回收,可能会被继续分配给新运行的程序,当用户需要查看进程的时候都会通过任务管理器进行查看,那么要如何查看进程PID标识符呢?下面就跟大家分

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

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

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

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version