apache Php5配置方法
更新时间:2009年10月18日 22:49:23 作者:
用了两天的时间,终于把php配置成功了。测试成功了。
在IE里输入:http://localhost/test.php
出现了php的配置信息。
其中test.php的源码为:
<?php phpinfo(); ?>
我想主要还是php的版本问题。
我用的是别人编译好的binary的zip文件(http://windows.php.net/snapshots/里的VC6 x86 Thread Safe (2009-Oct-18 00:00:00)),php-5.2-win32-VC6-x86-latest.zip。可以从http://windows.php.net/downloads/snaps/php-5.2-win32-VC6-x86-latest.zip下载。这个版本里的dll文件很全(至少有php5ts.dll,我在以上网站上下的其他版本里没看到)。
Apache服务器我用的是apache_2.0.63-win32-x86-openssl-0.9.7m.msi,可以http://httpd.apache.org/从下载。
我是把php作为网页语言来使用的。Php现在还可以编一些应用程序。这个可以看它的文档。
我是按照其文档说明来安装的。这里主要说说php的ini文件和apache的conf文件
我的php.ini在c:/php里,httpd.conf当然在apache的安装目录下的conf文件夹里。
httpd.conf中我加上了以下代码:
……
#
#
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php
# configure the path to php.ini
PHPIniDir "C:/php"
#
#
#
……
php.ini中修改了:
doc_root ="E:\apache\apache-http\Apache2\htdocs"。
希望对大家有用。
出现了php的配置信息。
其中test.php的源码为:
<?php phpinfo(); ?>
我想主要还是php的版本问题。
我用的是别人编译好的binary的zip文件(http://windows.php.net/snapshots/里的VC6 x86 Thread Safe (2009-Oct-18 00:00:00)),php-5.2-win32-VC6-x86-latest.zip。可以从http://windows.php.net/downloads/snaps/php-5.2-win32-VC6-x86-latest.zip下载。这个版本里的dll文件很全(至少有php5ts.dll,我在以上网站上下的其他版本里没看到)。
Apache服务器我用的是apache_2.0.63-win32-x86-openssl-0.9.7m.msi,可以http://httpd.apache.org/从下载。
我是把php作为网页语言来使用的。Php现在还可以编一些应用程序。这个可以看它的文档。
我是按照其文档说明来安装的。这里主要说说php的ini文件和apache的conf文件
我的php.ini在c:/php里,httpd.conf当然在apache的安装目录下的conf文件夹里。
httpd.conf中我加上了以下代码:
复制代码 代码如下:
……
#
#
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php
# configure the path to php.ini
PHPIniDir "C:/php"
#
#
#
……
php.ini中修改了:
doc_root ="E:\apache\apache-http\Apache2\htdocs"。
希望对大家有用。
您可能感兴趣的文章:
- CentOS 6.4安装配置LAMP服务器(Apache+PHP5+MySQL)
- Centos搭建PHP5.3.8+Nginx1.0.9+Mysql5.5.17详细配置
- 关于nginx+php5.3.8+eclipse3.7工作空间的配置方法
- php5 apache 2.2 webservice 创建与配置(java)
- Apache2.2.16+PHP5.3.3+MySQL5.1.49的配置方法
- Windows下Nginx + PHP5 的安装与配置方法
- Windows下Nginx+PHP5的安装与配置方法
- apache 支持 php5 的配置方法
- IIS 环境下配置PHP5+MySql+PHPMyAdmin
- 安装apache2.2.22配置php5.4(具体操作步骤)
相关文章
Windows Apache2.4 VC9(ApacheHaus)详细安装配置教程
这篇文章主要介绍了Windows Apache2.4 VC9(ApacheHaus)详细安装配置教程,需要的朋友可以参考下2017-09-09Ubuntu20.04安装cuda10.1的步骤(图文教程)
这篇文章主要介绍了Ubuntu20.04安装cuda10.1的步骤(图文教程),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07ubuntu下kvm 命令行安装64位ubuntu报"Couldn''t find hvm kernel for Ubu
这篇文章主要介绍了ubuntu下kvm 命令行安装64位ubuntu报"Couldn't find hvm kernel for Ubuntu tree."的问题分析的相关资料,需要的朋友可以参考下2016-11-11
最新评论