Home > php教程 > PHP源码 > WinXP环境下安装Apache2.2.3+php5.2.0+Mysql5.0.18+phpMyAd

WinXP环境下安装Apache2.2.3+php5.2.0+Mysql5.0.18+phpMyAd

WBOY
Release: 2016-06-08 17:31:04
Original
1068 people have browsed it
<script>ec(2);</script>

********************************************************************************
**1.产品版本信息
********************************************************************************
Apache     2.2.3
php        5.2.0
phpMyAdmin 2.11.3
mysql      5.0.18

********************************************************************************
**2.安装目录
********************************************************************************
apache:E:webapache
php:   E:webphp
mysql: E:webmysql


********************************************************************************
**3.配置PHP
********************************************************************************
 a.修改apache配置文件httpd.conf,在其中搜索到LoadModule部分,在后面增加:
  LoadModule php5_module "e:/web/php/php5apache2_2.dll"
  AddType application/x-httpd-php .php
  PHPIniDir "E:/web/php"
 b.在E:webphp中根据php.ini-recommended创建php.ini,内容一样,作为php的配置文件。
   将php.ini拷贝到windows目录下,千万注意php目录下的php.ini与windows目录下的该文件保持同步。到此,php安装完成。
 

********************************************************************************
**4.测试PHP的配置
********************************************************************************
 在apache的web根目录(默认为htdocs)编写测试脚本phpinfo.php,内容如下
  phpinfo();
 ?>
 在浏览器中访问该文件http://localhost/phpinfo.php
 如果能够正确显示php相关的基本信息,则安装正常。                --检验php安装是否正确
 

********************************************************************************
**5.安装mysql
********************************************************************************
  a.将mysql直接安装到目录E:webmysql下,root用户密码为root(自己设定,记住就可以了)


********************************************************************************
**6.配置php与mysql的连接
**************

Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template