Table of Contents
  第3步:配置Apache以支持php
  第4步:测试是否能够连接数据库
Home php教程 php手册 在win7下搭建php+apache+mysql环境

在win7下搭建php+apache+mysql环境

Jun 06, 2016 pm 07:36 PM
win7 build environment

虽然已经有很多博客介绍如何搭建php 环境 ,但是本人今天试了下还是觉得挺费劲,网上很多都说的不全面,特将今天搭建 环境 的过程记录下来,以方便后人。 第0步:安装Apache服务器 我使用的2.2版本,安装过程中需要注意的是选择端口号,80或8080,如果这两个

  虽然已经有很多博客介绍如何搭建php环境,但是本人今天试了下还是觉得挺费劲,网上很多都说的不全面,特将今天搭建环境的过程记录下来,以方便后人。

  第0步:安装Apache服务器

  我使用的2.2版本,安装过程中需要注意的是选择端口号,80或8080,如果这两个端口均已使用,可以在安装以后在配置文件中修改,配置文件httpd.conf位于 \Apache2.2\conf下。安装后在任务栏右下角会有一个小图标,点击图标打开Apache Service Monitor如下:

在win7下搭建php+apache+mysql环境

Start、Stop和Restart按钮用来开启、停止和重启服务,刚安装后没有默认的apache服务,这三个按钮都是 不可用状态,需要执行一个命令进行安装,在cmd窗口下cd到apache的bin目录下,这里有一个名为httpd.exe的可执行文件,使用httpd -h命令可以查看其使用方法。这里我们使用命令httpd -k install 来安装一个windows服务。需要注意的是如果执行该命令后提示“failed to open the winNT service manager”,需要在控制面板-用户帐户和家庭安全-用户帐户更改用户账户控制设置下选择从不通知,点击确定后重启电脑,重新执行httpd -k install命令后,会生产一个名为Apache2.2的Windows服务。在Apache Service Monitor中点击Start按钮启动服务,之后在浏览器中输入http://localhost:[端口],如果一切正常,会显示字符串“It works!”。

  第1步:安装mysql服务器

  这里使用的是5.5版本,这个版本挺好的,还带一个数据库管理工具:MySQL Workbench 5.2 CE

  第2步:安装和配置php

  此处使用的版本是:5.3.5。将php目录下的php.ini-development文件复制一份并重命名为php.ini。用文本编辑器打开php.ini修改如下内容:

  •   ;extension=php_mysql.dll这句去掉注释
  •   设置扩展库路径extension_dir = "D:/Program Files/php/ext"(视php安装路径而定)

如果需要使用phpmyadmin的话还需要把;extension=php_mysqli.dll这句的注释也去掉,还有许多设置,在此不一一列举,我也不知道。

  第3步:配置Apache以支持php

  打开配置文件httpd.conf,加入以下内容:

  LoadModule php5_module "D:/Program Files/php/php5apache2_2.dll" (视php安装目录而定)

      PHPIniDir "D:/Program Files/php" (视php.ini的位置而定)

  AddType application/x-httpd-php .php

  AddType application/x-httpd-php .htm

      AddType application/x-httpd-php .html

编写测试代码如下:

  

    <title>test</title>
    
        <?php phpinfo();
        ?> 
    

Copy after login

保存为test.php,放在D:\Program Files\Apache Software Foundation\Apache2.2\htdocs下面(视apache安装目录而定),这个位置可以在httpd.conf配置文件中修改。

  启动Apache服务,在浏览器地址栏输入:http://localhost:[端口]/test.php,测试是否配置正确

  第4步:测试是否能够连接数据库

  编写代码如下:

    <title>test</title>
    
        <?php $con = mysql_connect("127.0.0.1","root","8980471");
			if (!$con)
			{
				echo "no";
			}
			else
			{
				echo "ok";
			}
			mysql_close($con);
		?>
    

Copy after login

 

mysql_connect方法的第一个参数是数据库服务器,第二个参数是用户名,第三个参数是密码。如果端口不是3306,需要这么写:mysql_connect(“ip:端口”,“root","psd")
Copy after login

能看到“ok”就大功告成了。

  后记

  一天没吃饭,总算是好了。想学习学习web开发,我选择php,不过这个配置真是烦人。  

  

  

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)

What should I do if the Win7 taskbar does not display the icon? How to solve the problem of the computer taskbar icon disappearing What should I do if the Win7 taskbar does not display the icon? How to solve the problem of the computer taskbar icon disappearing Jun 09, 2024 pm 01:49 PM

Recently, many users using Win7 system have found that the icons in the taskbar suddenly disappeared, which makes the operation very inconvenient and they do not know how to solve the problem. This article will introduce to you how to solve the problem of disappearing taskbar icons in Win7 system. Bar! Cause Analysis When encountering such a situation, there are generally two situations: one is that the taskbar on the computer does not really disappear, but is just hidden, and the other is that the taskbar does disappear. Method 1: 1. There is a situation that you need to confirm first, that is, when the mouse is placed at the bottom of the screen, the taskbar will be displayed. You can directly click the mouse on the taskbar and select "Properties". 2. In the dialog box that opens, click & on the "Hide taskbar" option.

How to add Windows credentials in Win7 How to add Windows credentials in Win7 Mar 26, 2024 pm 07:46 PM

1. First, select the Control Panel option in the Start button of the Win7 system. 2. Then in the control panel that pops up, click the [User Accounts and Family Safety] item. 3. Then click [Credential Manager] in the pop-up interface. 4. Finally, click [Add Windows Credentials] to create your credentials. The operation method of adding and managing windows credentials in win7 is shared here in detail with friends. More exciting tutorials are available on the PHP Chinese website!

How to clear all desktop background images in Win7? Tips for deleting personalized background images in Win7 How to clear all desktop background images in Win7? Tips for deleting personalized background images in Win7 Jun 02, 2024 am 09:01 AM

In Win7 system, many users want to delete personalized desktop background images, but do not know how to delete them. This article will show you how to delete personalized background images in Win7 system. 1. First, open the control panel interface of the Win7 system and click to enter the "Appearance and Personalization" settings; 2. Then, in the opened interface, click the "Change Desktop Background" setting; 3. Then, click below "Desktop background" option; 4. Then, select Select all, and then click Clear all. Of course, you can also use it under "Customize", right-click the theme you want to delete, and then click &q on the shortcut menu

Where is the network discovery in Win7? Tips for enabling the network discovery function in Win7 Where is the network discovery in Win7? Tips for enabling the network discovery function in Win7 Jun 04, 2024 am 09:02 AM

Many computer users know that network discovery is a network setting. This setting will affect whether the computer can find other computers and devices on the network and whether it can find the computer when other computers on the network are found. So how to enable network discovery in win7? The following computer System Home U Disk Installation will introduce you to the tutorial on how to enable network discovery in win7 system. 1. First, click the "Start Menu" icon on the desktop taskbar and choose to open the "Control Panel" interface. 2. Then, in the interface that opens, set "View by" to "Category", and then choose to enter "Network and Internet"

How to quickly cancel the power-on password of WIN7 How to quickly cancel the power-on password of WIN7 Mar 26, 2024 pm 06:56 PM

1. Press win+r to enter the run window, enter [controluserpasswords2] and press Enter. 2. In the user account window, uncheck [To use this machine, the user must enter a username and password (E)], and then click [Apply → OK].

How to delete vbs virus in win7 How to delete vbs virus in win7 Mar 26, 2024 pm 09:21 PM

1. Click [Start → Run] and enter gpedit.msc. On the left side of the [Group Policy] window, click the [Computer Configuration → Windows Settings → Security Settings → Software Restriction Policy] item, and then click the [Action → Create New Policy] menu item. As shown in the picture: 2. Select [Other Rules] from the left. Right-click the blank space in the right pane and select the [New Path Rule] item in the menu. In the pop-up window, click the [Browse] button after [Path], select the wscript.exe file in the C: WindowsSystem32 folder, and set the [Security Level] to [Not Allowed]. Change C: System32, Dllcache and I386 under Windows

Introduction to how to change the startup sound of Windows 7 computer Introduction to how to change the startup sound of Windows 7 computer Mar 26, 2024 pm 09:30 PM

1. First copy the file you want to use as boot music to the corresponding directory of C: WindowsMedia. As shown in the figure: 2. Right-click the desktop on a single machine and select Personalize menu; as shown in the figure: 3. Select the sound option; as shown in the figure: 4. In the [Program Events] box in the [Sound] tab of the sound interface Select [Windows Login], then click [Browse]; as shown in the figure: 5. Select the music file that needs to be replaced, click Open, then click Apply and confirm to save the settings. as the picture shows:

How to modify boot animation in Windows 7 How to modify boot animation in Windows 7 Mar 26, 2024 pm 08:51 PM

1. Press and hold the [Win+R] keys to open the run dialog box, enter [regedit] in the search box, and then confirm; as shown in the figure: 2. Open HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionAuthenticationLogonUIBackgroud in the opened registry editor; as shown in the figure Display: 3. Double-click [OEMBackground] and open it, change the default value [0] to [1], and then confirm to exit; as shown in the figure: 4. Rename the image backgroundDefault.jpg, (the image size cannot exceed 256k

See all articles