Home php教程 php手册 Win7(32位)+PHP+Apache+SQLServer2005环境配置

Win7(32位)+PHP+Apache+SQLServer2005环境配置

Jun 06, 2016 pm 07:51 PM
32 bit win7

环境:Win7(32位)PHP5.3.20Apache2.2.22SQLServer2005Zendstudio9.0.2 一、安装SQLServer2005。 http://www.cnblogs.com/icewee/articles/2019783.html 上述是在Win7(32位)操作系统下安装SQLServer2005的过程,博文非常详细,图文并茂,一步步依照安装即可。

环境:Win7(32位)+PHP5.3.20+Apache2.2.22+SQLServer2005+Zendstudio9.0.2

一、   安装SQLServer2005。

http://www.cnblogs.com/icewee/articles/2019783.html

上述是在Win7(32位)操作系统下安装SQLServer2005的过程,博文非常详细,图文并茂,一步步依照安装即可。注:安装SQLServer2005前一定要开启IIS。

二、   安装PHP。

1、去php官网http://www.php.net/下载所需版本php压缩包,解压到C盘下并重命名为php。

2、使用php连接SQLServer需要手动加入相应的扩展dll文件,我使用的是

php_sqlsrv_53_ts_vc9.dll 

php_pdo_sqlsrv_53_ts_vc9.dll

两个扩展文件,放置在php/ext中。

3、将php文件夹中的php.ini-development配置文件重命名为php.ini,使用编辑器打开配置php环境。

1)打开php.ini配置文件,找到

; Onwindows:
; extension_dir = "ext"

修改为:

; Onwindows:
extension_dir = "C:/php/ext"

表示指定PHP扩展包的具体目录,以便调用相应的DLL文件。

2)由于默认PHP并不支持自动连接数据库,需开启相应的扩展库功能,即将

extension=php_mbstring.dll

extension=php_gd2.dll

extension=php_mssql.dll

extension=php_pdo_mssql.dll

extension=php_pdo_mysql.dll

extension=php_mysql.dll

extension=php_mysqli.dll

这些extension之前的分号(;)去除。同时,加入连接sqlserver的扩展如下。

extension=php_sqlsrv_53_ts_vc9.dll

extension=php_pdo_sqlsrv_53_ts_vc9.dll

亦可不动原代码,直接复制以上开启扩展的语句放在原语句后。

3)配置PHP的Session功能

在使用session功能时,我们必须配置session文件在服务器上的保存目录,否则无法使用session,我们需要在Windows 7上新建一个可读写的目录文件夹,此目录最好独立于WEB主程序目录之外,此处我在D盘根目录上建立了phpsessiontmp目录,然后在php.ini配置文件中找到

;session.save_path= "/tmp"

修改为:

session.save_path= "D:/phpsessiontmp"

4)配置PHP的文件上传功能

同session一样,在使用PHP文件上传功能时,我们必须要指定一个临时文件夹以完成文件上传功能,否则文件上传功能会失败,我们仍然需要在Windows 7上建立一个可读写的目录文件夹,此处我在D盘根目录上建立了phpfileuploadtmp目录,然后在php.ini配置文件中找到

;upload_tmp_dir=

修改为:

upload_tmp_dir= "D:/phpfileuploadtmp"

5)修改date.timezone,否则在执行phpinfo时date部分会报错,即将

;date.timezone=

修改为:

date.timezone = Asia/Shanghai

至此在Windows 7上php的环境配置就算完成了,但是光完成这些配置是不够的,我们需要Apache支持PHP,所以还需要在Apache配置文件中完成相应的PHP配置,下面将给出过程。

三、   安装Apache。

1、去Apache官网http://www.apache.org/ 下载所需版本,注意由于前面在安装SQLserver2005时开启了IIS,而Apache默认端口为80与IIS相同,因此在安装Apache服务器前需关闭IIS或更改IIS的占用端口。如何关闭或更高IIS端口,可百度。

2、Apache的安装目录可以使用默认目录或根据需要自行选择安装目录。在完成apache服务的安装后,在游览器中输入http://localhost/,出现It’s work!字样,说明Apache服务安装成功了。

3、配置Apache以支持PHP。

1)打开Apache安装目录下的文件夹,找到Conf文件夹下的httpd.conf文件(如我的是D:\ProgramFiles\Apache2.2\conf\httpd.conf),使用编辑器打开。

2) 在#LoadModule vhost_alias_module modules/mod_vhost_alias.so下添加

LoadModule php5_module "c:/php/php5apache2_2.dll"
PHPIniDir "c:/php"
AddType application/x-httpd-php .php .html .htm

这三行代码。我们在PHP目录下可以看到多个php5apache的DLL文件,由于我们使用的是Apache2.2.22,所以我们当然需要使用php5apache2_2.dll,接着指定PHP的安装目录以及执行的程序扩展名。

3)我们应该知道默认Apache服务器执行WEB主程序的目录为Apache2.2/htdocs,所以当你的WEB主程序目录变更时,我们需要修改相应的Apache配置,即将

DocumentRoot"C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"

修改为:

DocumentRoot"D:/PHPWeb"

同时,将

修改为:

4)最后修改具体的index文件先后顺序,由于配置了PHP功能,当然需要index.php优先执行。

DirectoryIndex index.html

修改为:

DirectoryIndex index.php index.html

4、重启Apache服务器。

至此,在Apache服务器上PHP环境配置工作就完成了,你只需要在D:/PHPWeb目录下新建一个PHP文件,写入

phpinfo();
?>

然后在游览器中输入http://localhost,就可以看到PHP的具体配置页面了,代表在Window 7上PHP环境配置工作就算完成了。

 

四、   安装Zendstudio。

ZendStudio是Zend Technologies开发的PHP语言集成开发环境。下载所需版本,照提示步骤安装即可。我使用的是ZendStudio9.0.2,其破解方法见博文http://blog.chinaunix.net/uid-20787846-id-3363704.html,写的非常详细,可依步骤执行即可。

 

五、   测试程序。

在数据库中建库(这里为imp_db),编写链接数据库的测试程序如下:

//链接数据库

$serverName = "localhost";
$connectionInfo = array ("Database" => "imp_db", "UID" => 'sa', "PWD" => 'sa' );
$conn = sqlsrv_connect( $serverName, $connectionInfo);
//判断链接是否成功
  if($conn === false )

  die( print_r( sqlsrv_errors(), true));
  return NULL;
}
echo "ok!";
?>

    在浏览器中输入地址运行即可。

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