summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-02-20 10:41:18 +0000
committerDerick Rethans <derick@php.net>2002-02-20 10:41:18 +0000
commit9d6c7626da44470c16b2e7c7f59fa2ed9f197c7c (patch)
tree326c34a8b83e66d6a8bd2843f9f3b5daa5873ea1
parentcddd25661f8a2d527071e5e2c740276e52bdb3d9 (diff)
downloadphp-git-9d6c7626da44470c16b2e7c7f59fa2ed9f197c7c.tar.gz
- Reformatting
-rw-r--r--sapi/nsapi/nsapi-readme.txt97
1 files changed, 54 insertions, 43 deletions
diff --git a/sapi/nsapi/nsapi-readme.txt b/sapi/nsapi/nsapi-readme.txt
index 2862a44e02..61e7dc8254 100644
--- a/sapi/nsapi/nsapi-readme.txt
+++ b/sapi/nsapi/nsapi-readme.txt
@@ -1,65 +1,76 @@
Configuration of your Netscape or iPlanet Web Server for PHP4
-------------------------------------------------------------
-These instructions are targetted at Netscape Enterprise Web Server
-and SUN/Netscape Alliance iPlanet Web Server. On other web servers
-your milage may vary.
+These instructions are targetted at Netscape Enterprise Web Server and
+SUN/Netscape Alliance iPlanet Web Server. On other web servers your
+milage may vary.
Firstly you may need to add some paths to the LD_LIBRARY_PATH
-environment for netscape to find all the shared libs. This is
-best done in the start script for your netscape server.
-Windows users can probably skip this step. The start
-script is located in:
-<path-to-netscape-server>/https-servername/start
+environment for Netscape to find all the shared libs. This is best done
+in the start script for your Netscape server. Windows users can
+probably skip this step. The start script is located in:
-netscape config files are located in:
-<path-to-netscape-server>/https-servername/config
+ <path-to-netscape-server>/https-servername/start
-add the following line to mime.types
-type=magnus-internal/x-httpd-php exts=php
+Netscape config files are located in:
+ <path-to-netscape-server>/https-servername/config
-Add the following to obj.conf, shlib will vary depending on your OS, for unix it
-will be something like "<path-to-netscape-server>/bin/libphp4.so".
-#note place following two lines after mime types init!
-Init fn="load-modules" funcs="php4_init,php4_close,php4_execute,php4_auth_trans" shlib="/php4/nsapiPHP4.dll"
-Init fn=php4_init errorString="Failed to initialize PHP!"
+Add the following line to mime.types:
-<Object name="default">
-.
-.
-.
-.#NOTE this next line should happen after all 'ObjectType' and before all 'AddLog' lines
-Service fn="php4_execute" type="magnus-internal/x-httpd-php"
-.
-.
-</Object>
+ type=magnus-internal/x-httpd-php exts=php
-<Object name="x-httpd-php">
-ObjectType fn="force-type" type="magnus-internal/x-httpd-php"
-Service fn=php4_execute
-</Object>
+Add the following to obj.conf, shlib will vary depending on your OS, for
+Unix it will be something like:
+
+ "<path-to-netscape-server>/bin/libphp4.so".
+
+
+Note! Place following two lines after mime.types init:
+
+ Init fn="load-modules" funcs="php4_init,php4_close,php4_execute,php4_auth_trans" shlib="/php4/nsapiPHP4.dll"
+ Init fn=php4_init errorString="Failed to initialize PHP!"
+
+ <Object name="default">
+ .
+ .
+ .
+ # NOTE this next line should happen after all 'ObjectType' and before
+ # all 'AddLog' lines
+
+ Service fn="php4_execute" type="magnus-internal/x-httpd-php"
+ .
+ .
+ </Object>
+
+ <Object name="x-httpd-php">
+ ObjectType fn="force-type" type="magnus-internal/x-httpd-php"
+ Service fn=php4_execute
+ </Object>
Authentication configuration
+----------------------------
-PHP authentication cannot be used with any other authentication. ALL AUTHENTICATION IS
-PASSED TO YOUR PHP SCRIPT. To configure PHP Authentication for the entire server, add
-the following line:
+PHP authentication cannot be used with any other authentication. ALL
+AUTHENTICATION IS PASSED TO YOUR PHP SCRIPT. To configure PHP
+Authentication for the entire server, add the following line:
+
+ <Object name="default">
+ AuthTrans fn=php4_auth_trans
+ .
+ .
+ .
+ .
+ </Object>
-<Object name="default">
-AuthTrans fn=php4_auth_trans
-.
-.
-.
-.
-</Object>
To use PHP Authentication on a single directory, add the following:
-<Object ppath="d:\path\to\authenticated\dir\*">
-AuthTrans fn=php4_auth_trans
-</Object>
+ <Object ppath="d:\path\to\authenticated\dir\*">
+ AuthTrans fn=php4_auth_trans
+ </Object>
+