Heim >php教程 >php手册 >PHP4.1.0在Windows下的Apache模块方式安装

PHP4.1.0在Windows下的Apache模块方式安装

WBOY
WBOYOriginal
2016-06-13 10:22:36828Durchsuche


有些功能(例如用户验证)要求 PHP 必须以 Apache 模块方式安装,
如果你不知道如何安装,那么下面这些就是你需要知道的。
节选自 php 的 install.txt
首先你需要将 php4ts.dll 拷到 windows/system (对于 Windows 9x/Me)
或者 winnt/system32 (对于 Windows NT/2000) 目录,覆盖之前的文件。
然后将下面两行添加到 Apache 设置文件(httpd.conf)
LoadModule php4_module c:/php/sapi/php4apache.dll
AddType application/x-httpd-php .php
记得要重新启动服务器才能生效,例如
NET STOP APACHE
接着
NET START APACHE
之后查看 phpinfo(),如果 Server API 显示为 Apache 既已经运行在模块方式下。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP4用户手册:函数-fileNächster Artikel:PHP4用户手册:常量