设为首页
加入收藏
站内地图
旧版入口
当前位置:首页 > 站长学院 > 网络编程 > PHP

在UNIX平台上的Netscape Enterprise Server 3.x下配置PHP

作者:佚名 出处:网络转载 时间:10-21 点击:

内容载入中...
作者:polaris(PHP@yeah.net)
一、基本原理
Netscape Enterprise Server以两种方式执行CGI程序.

指定一仅包含CGI程序的目录,所有在该目录下的程序不管是是什么后缀名都被执行  指定以某种后缀名结尾的程序均为CGI程序,放在服务器的任何位置都会被执行,PHP程序以该方式执行。

在mime.types中包含magnus-internal/CGI bat,CGI,exe,这告诉Netscape Enterprise Server后缀名为bat,CGI,exe的程序其类型为magnus-internal/CGI,但默认情况下如果这些程序不放在指定的CGI程序目录下Netscape
  Enterprise Server将不会执行它们。可以通过Netscape Enterprise Server Manager|Progams|CGI
  File Type,把Activate CGI as a file type选为Yes,然后Save and apply后即可。这样以bat,CGI,exe结尾的程序放在任何地方都会被执行。
实际上手工在obj.conf文件中添加
  Service type="magnus-internal/CGI" fn="send-CGI"
  即可。
在Netscape Enterprise Server上执行PHP程序需要一plugin程序模块,在启动Netscape Enterprise Server时
  会启动该模块,当客户端请求PHP程序时该模块会告诉Netscape Enterprise Server,这是个magnus-internal/CGI
  类型的文件,因此该PHP程序就被执行。
为实现以上功能,在obj.conf文件中加入
  Init fn="load-modules" funcs="redirect-CGI" \
  shlib="/opt/local/suitespot-3.0/plugins/redirect/redirect_CGI.so"
  NativeThread="no"
  在启动Netscape Enterprise Server时启动该模块。
  和
  ObjectType fn="redirect-CGI" CGI_path="/opt/local/www/CGI-bin/PHP"
  type="magnus-internal/PHP"
  通过先前启动的plugin模块告诉Netscape Enterprise Server,类型为magnus-internal/PHP的文件,
  需通过/opt/local/www/CGI-bin/PHP来解释执行。
在mime.types中加入一行
  magnus-internal/PHP PHP3,pHTML
  后,Netscape Enterprise Server就知道如何处理后缀名为PHP3,pHTML的文件了。
二、具体实现步骤:

  从http://www.webgenx.com/PHP/PHPnes.PHP3下载原程序后,参考$NETSCAPE_HOME/nsapi/examples目录下的Makefile文件,编译生成redirect_CGI.so文件。
  把该文件放置在某一目录下,例如:/opt/local/suitespot-3.0/plugins/redirect/redirect_CGI.so。
  修改mime.types文件加入magnus-internal/PHP PHP3,pHTML。
  
  修改obj.conf,在其它的Init-directives后,加入
    Init fn="load-modules" funcs="redirect-CGI" \
    shlib="/opt/local/suitespot-3.0/plugins/redirect/redirect_CGI.so"
    NativeThread="no"
  
  修改obj.conf
    在ObjectType fn="type-by-extension"和ObjectType fn="force-type"
    type="text/plain"间加入:
    ObjectType fn="redirect-CGI" CGI_path="/opt/local/www/CGI-bin/PHP"
    type="magnus-internal/PHP"。
  
  修改obj.conf
    在ObjectType fn="force-type" type="text/plain"和
    Service method="(GET|HEAD)" type="magnus-internal/imagemap"
    fn="imagemap"间加入
    Service type="magnus-internal/CGI" fn="send-CGI"。
  把编译后生成的PHP文件放在/opt/local/www/CGI-bin目录下。

完成后重新启动Netscape Enterprise Server即可。 
收藏本文:
】【打印页面】【推荐给朋友】【关闭窗口

站长学院

推荐信息