Heim  >  Artikel  >  php教程  >  PHP安装简明指南

PHP安装简明指南

WBOY
WBOYOriginal
2016-06-21 09:12:27871Durchsuche

                

PHP安装



作者:sports98

    使用PHP环境的WEB工作环境越来越多了,PHP版本也在从PHP3逐步的完善到PHP4,然后到php4.2.2
php4.2.3,php4.3.0RC2;早一段时间就有人问php4.2.2与apache2的结合存在问题,后来在linuxforum.net内
看到一帖采用更改SOURCE的办法通过编译,也没去尝试。随着工作的需要以及个人的爱好,在自己机器上使
用PHP,由于其他很多工作是在WIN系统下完成的因此我就主说一下PHP在WIN系统下的配置。

       先说明一下本人机器配置:
            CPU:P4 1.5G
            RAM:256MB
            HD :40G

              系统环境:
            Windows Advanced Server Sp3

          Web系统:

            IIS5.0
            Apache
            Apache2

          数据库 :

            Mysql4.0

老版本安装:

    早期采用的是php4.1.2安装方法以前帖子都有提到,这里再简单的说一下

        IIS内安装PHP我习惯使用ISAPI模式安装,CGI模式不喜欢使用(个人爱好而已~),好象很多书上写的
多半是CGI模式的安装,原因很简单~,CGI的安装模式是比较简单的,

        PHP以CGI模式安装到IIS
    ======================

            开始-》设置-》控制面版-》管理工具-》Internet 服务管理器

        右键选取WEB站点,选择[属性]

                Web站点属性对话页面 -》 主目录 -》 配置 -》 添加 -》可执行文件为(php.exe %s%s)--找到你的PHP安装目录
                扩展名不用说了,肯定是php了

                然后修改一下你的文档,增加个index.php

                运行cmd.exe ->net stop iisadmin ->net start w3svc (你也可以利用Internet 服务管理器进行IIS重起就可以了)

                访问一下你的http://localhost,当然了最好放个phpinfo();来检测一下
        
     *******此方法通用php4.1.* -4.2.* -4.3.0

         PHP以ISAPI模式安装到IIS
         =======================
            开始-》设置-》控制面版-》管理工具-》Internet 服务管理器

        右键选取 *机器名 -》属性

                编辑WWW属性-》ISAPI 筛选器-》添加-》名为PHP,路径应为%PATHTOPATH%\sapi\php4isapi.dll

                点选文档-》增加index.php

                编辑站点,重复一下步骤OK

        重新启动IIS,方法见上,然后检测

     *******此方法通用php4.1.* -4.2.* -4.3.0

         PHP4.1(3).X以apache模式安装到Apache/Apache2
         ========================================
             
        编辑Apache配置文件httpd.conf
        增加
        LoadModule php4_module $PATHTOPHP$/sapi/php4apache(2).dll --(2)为Apache2所使用
        AddModule mod_php4.c
        AddType application/x-httpd-php .php
        DirectoryIndex 后增加index.php
        (其他的比如说文档的主服目录等自己设置)

        重新启动Apache
    ********此方法适用PHP4.1.x/4.3.0

    PHP4.1(3).X以CGI模式安装到Apache/Apache2
    ========================================

        编辑Apache配置文件httpd.conf
        增加
        ScriptAlias /php/ "%PATHTOPHP%"
        Action    application/x-httpd-php "/php/php.exe"
        AddType application/x-httpd-php .php
        DirectoryIndex 后增加index.php
        (其他的比如说文档的主服目录等自己设置)

        重新启动Apache
    ********此方法适用PHP4.1.x/4.3.0

    PHP4.2.x安装到Apache(Apache模式/cgi模式)
    ====================
                方法同4.1一样

    PHP4.2.X安装到Apache2

        始终没没安装成功过,提示错误,我更换为php4.3.0RC2后安装成功
    
        System      Windows NT localhost 5.0 build 2195  
        Build Date  Nov 27 2002 21:11:38  
        Server API  Apache 2.0 Filter  
        ====================


    以上为本人对PHP(Win系统下)安装的一点,希望对各位有所帮助。等过段时间手里事情忙了个清单后再考虑写一下在
    linux下的安装~:)


PHP安装说明



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