Home >Database >Mysql Tutorial >IIS+PHP+MySQL+Zend Optimizer+GD库+phpMyAdmin安装配置_MySQL

IIS+PHP+MySQL+Zend Optimizer+GD库+phpMyAdmin安装配置_MySQL

WBOY
WBOYOriginal
2016-06-01 13:47:571049browse

phpmyadminZendOptimizer

bitsCN.com

Apache下支持PHP的配置方法比较简单,这里就不写了

一、软件准备:以下均为截止2005-4-20的最新正式版本
PHP(5.0.4):http://cn.php.net/get/php-5.0.4-Win32.zip/from/a/mirror

MySQL(4.1.11):http://www.skycn.com/soft/1262.html

http://dev.mysql.com/downloads/mysql/4.1.html

Zend Optimizer(2.5.7):http://www.zend.com/store/free_download.php?pid=13

phpMyAdmin(2.6.2):http://www.skycn.com/soft/10687.html
http://www.crsky.com/SoftView/SoftView_4190.html

假设 C: 为你现在所使用操作系统的系统盘,如果你目前操作系统不是安装在 C: ,请自行修改。

二、安装 PHP :

(1)、下载后得到 php-5.0.4-Win32.zip ,解压至C:Inetpubphp(这个路径可以随意,不过下面要是用到这个路径,请相应修改);

(2)、再将C:Inetpubphp目录下的所有dll文件(主要是C:Inetpubphp下C:Inetpubphpext下的DLL文件)拷到c:Windowssystem32下,覆盖已有的dll文件;
/
/
(3)、将C:PHP目录下的php.exe、php-win.exe和php.ini-dist三个文件拷到C:Windows ( Windows 2000 下为 C:WINNT)下; 将C:Windowsphp.ini-dist改名为php.ini,然后用记事本打开,利用记事本的查找功能搜索

 register_globals = Off

,将 Off 改成 On ;
再搜索

extension_dir =

,并将其路径指到你的 PHP 目录下的 extensions 目录,比如:extension_dir = "C:Inetpubphpext" ;
搜索找到

;Windows Extensions

将下面列举的

;extension=php_dbase.dll

可选

;extension=php_gd2.dll

这个是用来支持GD库的,一般需要,必选

  ;extension=php_ldap.dll

可选

;extension=php_mbstring.dll

这不选一般用PHPMYADMIN会出红色提示,故必选

  ;extension=php_mssql.dll

这个是用来支持MSSQL的,可选

  ;extension=php_mysql.dll

这个是用来支持MYSQL的,要支持MYSQL必选
将这些前的";"去掉,其他的你需要的也可以去掉前面的;然后关闭保存该文件。
本人配置成功后的PHP.INI文件示例:
http://xqin.com/iis/php bitsCN.com
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