apache配置,php中没有php5apache2_2.dll的原因及解决办法

来源:互联网 发布:光盘刻录软件哪个好 编辑:程序博客网 时间:2024/05/01 23:25

在给apache配置php的过程中,如果php安装目录里没有php5apache2_2.dll,一定是下载的版本不对。
php 5.3.4有v9版和v6好几个版本
网站左边有几段文字:
which version do i choose?
if you are using php with apache 1 or apache2 from apache.org you need to use the vc6 versions of php
所以要下载v6c versions of php ,
v6c又有两个版本如下:
vc6 x86 non thread safe
vc6 x86 thread safe
以上两个版本中,non thread safe版的php在安装过程中,
没有apache的选项:
select the web server you wish to setup
iis fastcgi
other cgi
do not setup a web server

而thread safe版的安装过程中有apache 2.2.x module选项:
select the web server you wish to setup
apache 2.2.x module
apache cgi
iis fastcgi
iis cgi
nsapi
xitami
netserve web server
other cgi
do not setup a web server
-------------------------
所以应该下载的版本是 vc6 x86 thread  去php官网下载,http://windows.php.net/download

转自http://www.footya.com/?action=show&id=109