


php5.6-Apache2.4-mysql5.6 environment configuration (win7_64 bit), php5.6apache2.4
------ --------------------------------------------------
★Software tools: (When downloading, please pay attention to download the corresponding version, the installation details of different versions may be different!!)
1>httpd-2.4.18-win64-VC14.zip Download address: http://www.apachelounge.com/download/
2>php-5.6.16-Win32-VC11-x64.zip Download address: http://windows.php.net/download/
3>mysql-5.6.29-winx64.zip Download address: http://dev.mysql.com/downloads/mysql/
4> MySQL-Front Download address: http://www.mysqlfront.de/
----------------------------------------- ------------
★ Before installation, you need to know: : win7 configuration Environment variables (taking mysql as an example)
(After configuring the environment variables of the corresponding command, there is no need to "enter the directory" operation)
Copy the absolute path of /bin after mysql installation to the location in Figure 7 below (note that there must be a ; sign at the end of each path), and then confirm the changes
----------------------------------------- --------------------------
1. Installation configurationApache2.4.18(httpd-2.4.18-win64-VC14.zip)
1>Enter the httpd-2.4.18-win64-VC14.zip download address and download this compressed package. (As shown below)
(Attached download address: http://www.apachelounge.com/download/)
2>Extract the downloaded httpd-2.4.7-win64-VC11.zip out of the Apache24 folder and put it in your own installation directory (My directory is D:/File/phpEnv)
3> Then enter the conf directory (Apache24/conf/) under the Apache24 folder, find the httpd.conf file, open it with Notepad and modify some of the contents inside
(The following paths should be modified accordingly according to your own decompression path!!)
(1) Modify the root path of ServerRoot Apache:
<span><</span><span>37</span><span>行</span><span>></span>ServerRoot "c:/Apache24" 改成=> ServerRoot "D:/File/phpEnv/Apache24"
(2) Modify ServerName to your host name:
(Line 255) ServerName www.example.com:80 Remove the # in front. This attribute is needed when starting Apache from the command line.
(3) Modify the main folder directory accessed by DocumentRoot Apache, which is the location of php and html code files. The default path of Apache is under htdocs (Apache24/htdocs), which has a simple entry file index.html. This path can be modified by yourself. I configure it in my newly created www folder (D:/File/phpEnv/www), and you can make corresponding changes according to your own needs.
<span>(249行) DocumentRoot "c:/Apache24/htdocs" </span><span><</span><span>Directory</span><span>"c:/Apache24/htdocs"</span><span>></span><span> 改为=> DocumentRoot "D:/File/phpEnv/www " </span><span><</span><span>Directory </span><span>"D:/File/phpEnv/www "</span><span>></span>
(4) Modify the entry file configuration: DirectoryIndex Under normal circumstances, we use index.php, index.html, index.htm as the entry point for web projects . Apache's default entry is only index.html, and you need to add support for the other two. Of course, the settings of this entry file can be increased or decreased according to your own needs. If the requirements are stricter, you can only write one index.php, so that the entry in the project is It can only be index.php
(282行)<span><</span><span>IfModuledir_module</span><span>></span><span> DirectoryIndex index.html </span><span></</span><span>IfModule</span><span>></span><span> 改为=> </span><span><</span><span>IfModuledir_module</span><span>></span><span> DirectoryIndex index.php index.htm index.html </span><span></</span><span>IfModule</span><span>></span>
(5) 设定serverscript的目录:
<span>(366行)ScriptAlias/cgi-bin/ "c:/Apache24/cgi-bin/" 改为=> ScriptAlias/cgi-bin/ " D:/File/phpEnv/Apache24/cgi-bin"</span>
(6)改cgi-bin目录:
<span>(382行) </span><span><</span><span>Directory</span><span>"c:/Apache24/cgi-bin"</span><span>></span><span> AllowOverride None Options None Require all granted </span><span></</span><span>Directory</span><span>></span><span> 改为=> </span><span><</span><span>Directory </span><span>"D:/File/phpEnv/Apache24/cgi-bin"</span><span>></span><span> AllowOverride None Options None Require all granted </span><span></</span><span>Directory</span><span>></span>
4>接下来就可以启动Apache了
鼠标点击(开始)à(运行)(或Win+R),输入cmd,打开命令提示符。
然后进入D:/File/phpEnv/Apache24/bin目录下回车httpd回车,如图所示.
<span>cmd进入指定目录命令(以我的路径为例): D: 回车 cd D:/File/phpEnv/Apache24/bin 回车</span>
没报错就可以测试了(保持该命令窗口为打开的状态!!!!!!)。
(如果配置好了httpd命令的环境变量就不用“进入目录”操作)
可以把Apache24/htdocs目录下的index.html放到D:/File/phpEnv/www目录下,用浏览器输入地址:localhos或127.0.0.1访问会出现“It works”那么就说明Apache已经正确安装并启动了。
也可以自己写一个简单的index.html文件也可以打开。
5>将Apache加入到window服务启动项里面并设置成开机启动
1.先关闭httpd的服务(将❹中命令窗口关闭即可)
2.重新打开一个新的命令窗口进入到D:/File/phpEnv/Apache24/bin目录下:
添加HTTP服务的命令是:httpd.exe -kinstall -n "servicename" servicename是服务的名称,我添加的是:httpd.exe -k install -n "Apache24"命令成功后会有成功的提示,此时你可以在window服务启动项中看到Apache24这个服务
3.然后点击启动就可以了,如果不想设置成开机启动的话也可以将启动类型修改为手动。
4.如果要卸载这个服务的话,先要停止这个服务,然后输入httpd.exe -k uninstall -n "Apache24"卸载这个服务。
5.当然也可以通过D:/File/phpEnv/Apache24bin下面的ApacheMonitor.exe来启动Apache
如此Apache的配置就基本完成了。
--------------------------------------------------------------------------
二、安装配置php-5.6.16 (php-5.6.16-Win32-VC11-x64.zip)
1>进入php-5.5.16-Win32-VC11-x64.zip下载地址,下载此压缩包。(如下图)要下载线程安全版的php!!!!!!!!
(附下载地址: http://windows.php.net/download/)
打开链接后选择相应版本,然后进入下载页面(千万得注意下载的版本!!!!!)
2>将下载的php-5.5.10-Win32-VC11-x64.zip解压到安装到自己喜喜欢的目录下我的是(D:/File/phpEnvphp)
3>将目录下的php.ini-development文件复制一份并改名为php.ini它是php的配置文件
4>为Apache服务添加php支持
打开Apache的配置文件http.conf在最后加上以下代码:
《Apache加入php时注意空格(下方为正确写法)PS:我装的时候因为这个问题取法启动Apache24耽误了好久》
<span># php5 support LoadModule php5_module D:/File/phpEnv/php/php5apache2_4.dll AddType application/x-httpd-php .php .html .htm # configure thepath to php.ini PHPIniDir "D:/File/phpEnv/php"</span>
我是添加在LoadModule下面
添加的时候要保证你的php5apache2_4.dll文件确实存在php5.5的早期版本里面是没有这个文件的,不过高点版本里面已经有了,可以打开php安装目录找下这个文件
PHPIniDir" D:/File/phpEnv/php"这个就是你的php根目录
5>重启Apache服务器。
6>测试。
删除www中其他文件index相关文件,新建一个index.php,内容为保存,访问出现php的信息就说明php已经成功安装。
备注:
Php的一些常用配置修改:(D:/File/phpEnv/php/php.ini)
时区的设置:date.timezone = Asia/Shanghai
错误报告等级:error_reporting = E_ALL这个在开发模式下可以全部打开。
---------------------------------------------------------------------------
三、安装配置mysql-5.6.29 (mysql-5.6.29-winx64.zip )
1>进入mysql-5.6.29-winx64.zip下载地址,下载此压缩包。(如下图)
(附链接:http://dev.mysql.com/downloads/mysql/)
1)打开链接后选择相应版本,然后进入下载页面(千万得注意下载的版本!!!!!)
2)选择“No thanks, just start my download.”“不,谢谢,开始我的下载”就可以下载了
2>安装(解压):解压到自己喜欢的文件夹
3>配置默认文件
在mysql-5.7.10-winx64目录下,新建一个my.ini。复制下面的代码保存就可以了。my.ini会替换掉下面的my-default.ini文件。ini文件是window里面的配置文件。保存里面各种默认的数据。
把my.ini中代码全部替换为以下代码(将安装路径的两条代码改成自己的路径!!!):
<span>[mysql] # 设置mysql客户端默认字符集 default-character-set=utf8 [mysqld] #skip-grant-tables #设置3306端口 port = 3306 # 设置mysql的安装目录 basedir=D:\File\phpEnv\MySQL\mysql-5.6.29-winx64 # 设置mysql数据库的数据的存放目录 datadir=D:\File\phpEnv\MySQL\mysql-5.6.29-winx64\data # 允许最大连接数 max_connections=200 # 服务端使用的字符集默认为8比特编码的latin1字符集 character-set-server=utf8 # 创建新表时将使用的默认存储引擎 default-storage-engine=INNODB</span>
4> 以管理员身份进入命令行窗口安装mysql服务
(以下的cmd进入路径操作,如果配置了环境变量就不用进入/bin目录)
在cmd中进入mysql-5.6.29-winx64.zip解压出的/bin目录下(进入相应目录命令:cd D:…/…/…)
输入mysqld install 安装mysql
(将服务删除:sc delete MySQL //这里的MySQL是你要删除的服务名)
然后输入 net start mysql 启动服务
成功后如下图(我是已经配置好了环境变量所以直接输入安装命令和启动命令就行):
5>首次设置新密码
/bin目录下输入mysql -uroot -p ,默认是没有密码的,直接按回车进入(我是已经设置密码了)
按照以下操作添加数据库密码:
<span>1.进入mysql数据库: mysql> use mysql; Database changed 2.给root用户设置新密码 mysql> update user set password=password("新密码") where user="root"; Query OK, 1 rows affected(0.01 sec) Rows matched: 1 Changed: 1Warnings: 0 3.刷新数据库(一定要记得刷新) mysql>flush privileges; QueryOK, 0 rows affected (0.00 sec) 4.退出mysql: mysql> quit</span>
6>为php添加mysql支持
1)(736行); extension_dir = "ext",去掉前面的“;”,并改为extension_dir ="D:\phpEnv\php\ext"打开php的扩展支持,ext文件夹下有很多php的扩展支持.dll文件,感兴趣可以看一下。
2)然后就是打开php的mysql扩展了
<span>(890、891行)去掉前面的“;” extension=php_mysql.dll extension=php_mysqli.dll</span>
当然也可以打开895行的php_pdo_mysql.dll启用php的pdo支持我一般都用这个。
注:有很多扩展选择,你要用到什么,去掉前面的“;”就可以了。当然如果要添加其他的扩展支持如redis支持,php本身可能没有提供相应的dll文件,就需要自己去找到相应版本的dll添加到ext文件夹中,然后在配置文件中添加一个extension=…
3) 完成之后,重启Apache24
在访问phpinfo的时候就可以看到(在浏览器输入地址:localhost或127.0.0.1)
7>mysql图形界面管理软件安装(这里用的是:MySQL-Front):
1)进入下载链接下载最新版MySQL-Front:
(MySQL-Front下载地址:http://www.mysqlfront.de/)
2)开始安装(一全图片形式说明):
Started to write on: 2016.3.24

Windows恢复环境(WinRE)是用于修复Windows操作系统错误的环境。进入WinRE后,您可以执行系统还原、出厂重置、卸载更新等操作。如果无法引导到WinRE,本文将指导您使用修复程序解决此问题。无法引导到Windows恢复环境如果无法引导至Windows恢复环境,请使用下面提供的修复程序:检查Windows恢复环境的状态使用其他方法进入Windows恢复环境您是否意外删除了Windows恢复分区?执行Windows的就地升级或全新安装下面,我们已经详细解释了所有这些修复。1]检查Wi

在本文中,我们将了解Python和Anaconda之间的差异。Python是什么?Python是一种开源语言,非常重视使代码易于阅读并通过缩进行和提供空白来理解。Python的灵活性和易于使用使其非常适用于各种应用,包括但不限于对于科学计算、人工智能和数据科学,以及创造和发展的在线应用程序。当Python经过测试时,它会立即被翻译转化为机器语言,因为它是一种解释性语言。有些语言,比如C++,需要编译才能被理解。精通Python是一个重要的优势,因为它非常易于理解、开发,执行并读取。这使得Pyth

随着互联网的不断发展和普及,Web应用程序已成为人们日常生活中必不可少的一部分,这也决定了Web应用程序的安全问题非常重要。在Web应用程序中,Cookie被广泛使用来实现用户身份认证等功能,然而Cookie也存在着安全风险,因此在配置Nginx时,必须设定适当的Cookie安全策略,以保证Cookie的安全性。下面是一些在Nginx中配置Cookie安全策

如何配置MySQL连接池的最大连接数?MySQL是一个开源的关系型数据库管理系统,被广泛应用于各种领域的数据存储与管理。在使用MySQL时,我们常常需要使用连接池来管理数据库连接,以提高性能和资源利用率。连接池是一种维护和管理数据库连接的技术,它能够在需要时提供数据库连接,并在不需要时回收连接,从而减少了连接的重复创建和销毁。而连接池的最大连接数则是连接池所

php集成环境包有:1、PhpStorm,功能强大的PHP集成环境;2、Eclipse,开放源代码的集成开发环境;3、Visual Studio Code,轻量级的开源代码编辑器;4、Sublime Text,受欢迎的文本编辑器,广泛用于各种编程语言;5、NetBeans,由Apache软件基金会开发的集成开发环境;6、Zend Studio,为PHP开发者设计的集成开发环境。

Nginx错误页面配置,优雅处理网站故障在现代互联网时代,一个高度稳定和可靠的网站是任何企业或个人追求的目标。然而,由于各种原因,网站可能会经历故障或错误,这可能是由于网络问题、服务器问题或应用程序错误等。为了提供更好的用户体验和优雅地处理任何可能发生的错误,Nginx作为一个强大的Web服务器软件,不仅能够提供高性能的服务,还能够灵活地配置错误页面。在Ng

随着云计算、大数据和物联网等技术的日益普及,虚拟化技术成为了当今IT领域的热门话题。虚拟化是通过将一台物理主机划分为多个独立的虚拟机,实现资源的共享和管理的方法。虚拟网络是虚拟化的其中一个重要组成部分,能够满足不同应用之间的网络隔离和互动需求。在本文中,我们将介绍如何使用Linux进行虚拟网络配置。一、Linux虚拟网络的概述在物理网络中,网卡是连接网络设备

在Linux服务器上配置防火墙非常重要,它可以有效地保护服务器免受恶意攻击。在Ubuntu操作系统上,我们可以使用UFW防火墙来保护服务器的安全。在本文中,我们将介绍如何使用宝塔面板配置UFW防火墙。第一步:安装宝塔面板首先,我们需要在Ubuntu上安装宝塔面板。您可以在宝塔官网免费下载宝塔面板的安装包,然后在命令行中运行以下命令来安装宝塔面板:$wget


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
