在PWS上安装PHP4.0正式版
Release: 2016-06-21 09:04:34
Original
803 people have browsed it
1、您可以从Windows 98的安装盘的add-ons\pws\setup.exe中安装Personal Web Server,
选典型安装就可以了,使用缺省安装目录C:\Inetpub\wwwroot;
2、软件下载:
http://www.php.net/distributions/php-4.0.0-Win32.zip
3、用WinZIP等解压缩工具把php-4.0.0-Win32.zip解开到PHP安装目录,如C:\PHP,本文中
用$PHP_ROOT来代替PHP安装目录;
4、详细的英文安装文档请参考$PHP_ROOT目录下的README.txt文件;
5、将$PHP_ROOT目录下的php.ini-dist文件拷贝到C:\WINDOWS目录,并将C:\WINDOWS\php.i
ni-dist改名为C:\WINDOWS\php.ini;
6、将$PHP_ROOT目录下的MSVCRT.DLL和php4ts.dll拷贝到C:\WINDOWS\System目录,如果C:\
WINDOWS\System目录下已经存在这些文件,请不要覆盖;
7、修改C:\WINDOWS\php.ini:
1) 将extension_dir设置为PHP安装目录,如:extension_dir = C:\PHP
2) 配置要加载的动态裢接库(DLL),注意一定要保证只能加载$PHP_ROOT目录下存在
的动态裢接库,该版本自带这些动态裢接库:php_calendar.dll、php_imap.dll、php_ldap
.dll,因此动态裢接库的配置栏如下:
;Windows Extensions
extension=php_calendar.dll
extension=php_imap.dll
extension=php_ldap.dll
8、运行regedit程序(开始->运行,输入regedit),找到下面的路径:
我的电脑
HKEY_LOCAL_MACHINE
System
CurrentControlSet
Services
W3SVC
Parameters
Script Map
然后右击Script Map->新建->串值,名称为.php(这时您的PHP程序就要以.php为后缀了
哦,当然您可以改成别的),双击刚建的串值,在键值输入框中输入php4isapi.dll文件的完
整路径$PHP_ROOT\php4isapi.dll,如C:\PHP\php4isapi.dll;
9、建一个PHP测试目录,如D:\MyPHP,在本文中用$MyPHP来代替该目录,打开PWS管理器(右
击状态栏下的一个小图标,点属性),打开后点高级配置,添加一个虚拟目录,目录为$MyPH
P,本例中为D:\MyPHP,别名为MyPHP,访问权限为读取、执行、脚本;
10、重启计算机;
11、在$MyPHP目录下写一个测试程序phpinfo.php(注意后缀要和8中的后缀一致哦),内容为
phpinfo(); ?>,然后在浏览器上输入http://localhost/myphp/phpinfo.php测试,能看
到php的一些信息就表示装好了。
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31