install.windows.sun.html

来自「php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容」· HTML 代码 · 共 331 行

HTML
331
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Sun, iPlanet and Netscape servers on Microsoft Windows</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="install.windows.apache2.html">Apache 2.0.x on Microsoft Windows</a></div> <div class="next" style="text-align: right; float: right;"><a href="install.windows.omnihttpd.html">OmniHTTPd Server</a></div> <div class="up"><a href="install.windows.html">Installation on Windows systems</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="install.windows.sun" class="sect1">   <h2 class="title">Sun, iPlanet and Netscape servers on Microsoft Windows</h2>   <p class="para">    This section contains notes and hints specific to Sun Java System Web Server,    Sun ONE Web Server, iPlanet and Netscape server installs of PHP on Windows.   </p>   <p class="para">    From PHP 4.3.3 on you can use PHP scripts with the    <a href="ref.nsapi.html" class="link">NSAPI module</a> to     <a href="install.windows.sun.html#install.windows.sun.specialpages" class="link">generate custom    directory listings and error pages</a>. Additional functions for    Apache compatibility are also available. For support in current web servers    read the <a href="install.windows.sun.html#install.windows.sun.notes" class="link">note about    subrequests</a>.   </p>      <div id="install.windows.sun.cgi" class="sect2">    <h3 class="title">CGI setup on Sun, iPlanet and Netscape servers</h3>     <p class="para">     To install PHP as a CGI handler, do the following:    </p>    <ul class="itemizedlist">     <li class="listitem">      <span class="simpara">       Copy <var class="filename">php4ts.dll</var> to your systemroot       (the directory where you installed Windows)      </span>     </li>     <li class="listitem">      <p class="para">       Make a file association from the command line.       Type the following two lines:       <div class="example-contents"><div class="cdata"><pre>assoc .php=PHPScriptftype PHPScript=c:\php\php.exe %1 %*</pre></div>       </div>      </p>     </li>     <li class="listitem">      <span class="simpara">       In the Netscape Enterprise Administration Server create       a dummy shellcgi directory and remove it just after (this       step creates 5 important lines in obj.conf and allow the       web server to handle shellcgi scripts).      </span>     </li>     <li class="listitem">      <span class="simpara">       In the Netscape Enterprise Administration Server create       a new mime type (Category: type,       Content-Type: magnus-internal/shellcgi, File Suffix:php).      </span>     </li>     <li class="listitem">      <span class="simpara">       Do it for each web server instance you want PHP to run      </span>     </li>    </ul>    <p class="para">     More details about setting up     PHP as a CGI executable can be found here:     <a href="http://benoit.noss.free.fr/php/install-php.html" class="link external">&raquo; http://benoit.noss.free.fr/php/install-php.html</a>    </p>   </div>       <div id="install.windows.sun.nsapi" class="sect2">    <h3 class="title">NSAPI setup on Sun, iPlanet and Netscape servers</h3>     <p class="para">     To install PHP with NSAPI, do the following:    </p>    <ul class="itemizedlist">     <li class="listitem">      <span class="simpara">       Copy <var class="filename">php4ts.dll</var> to your systemroot       (the directory where you installed Windows)      </span>     </li>     <li class="listitem">      <p class="para">       Make a file association from the command line.       Type the following two lines:       <div class="example-contents"><div class="cdata"><pre>assoc .php=PHPScriptftype PHPScript=c:\php\php.exe %1 %*</pre></div>       </div>      </p>     </li>     <li class="listitem">      <span class="simpara">       In the Netscape Enterprise Administration Server create       a new mime type (Category: type,       Content-Type: magnus-internal/x-httpd-php, File Suffix: php).      </span>     </li>     <li class="listitem">      <p class="para">        Edit <var class="filename">magnus.conf</var> (for servers &gt;= 6) or        <var class="filename">obj.conf</var> (for servers &lt; 6) and add the following:        You should        place the lines after <i>mime types init</i>.       <div class="example-contents"><div class="cdata"><pre>Init fn=&quot;load-modules&quot; funcs=&quot;php4_init,php4_execute,php4_auth_trans&quot; shlib=&quot;c:/php/sapi/php4nsapi.dll&quot;Init fn=&quot;php4_init&quot; LateInit=&quot;yes&quot; errorString=&quot;Failed to initialise PHP!&quot; [php_ini=&quot;c:/path/to/php.ini&quot;]</pre></div>       </div>       (PHP &gt;= 4.3.3) The <i>php_ini</i> parameter is       optional but with it you can place your       <var class="filename">php.ini</var> in your web server configuration directory.      </p>     </li>     <li class="listitem">      <p class="para">       Configure the default object in <var class="filename">obj.conf</var>       (for virtual server classes [Sun Web Server 6.0+] in       their <var class="filename">vserver.obj.conf</var>):       In the <i>&lt;Object name=&quot;default&quot;&gt;</i>       section, place this line necessarily after all &#039;ObjectType&#039;       and before all &#039;AddLog&#039; lines:       <div class="example-contents"><div class="cdata"><pre>Service fn=&quot;php4_execute&quot; type=&quot;magnus-internal/x-httpd-php&quot; [inikey=value inikey=value ...]</pre></div>       </div>       (PHP &gt;= 4.3.3) As additional parameters you can add some special       <var class="filename">php.ini</var>-values, for example you       can set a <i>docroot=&quot;/path/to/docroot&quot;</i>       specific to the context <i>php4_execute</i>       is called. For boolean ini-keys please use 0/1 as value,       not <i>&quot;On&quot;,&quot;Off&quot;,...</i>       (this will not work correctly), e.g.       <i>zlib.output_compression=1</i> instead of       <i>zlib.output_compression=&quot;On&quot;</i>      </p>     </li>     <li class="listitem">      <p class="para">       This is only needed if you want to configure a directory that only consists of       PHP scripts (same like a cgi-bin directory):       <div class="example-contents"><div class="cdata"><pre>&lt;Object name=&quot;x-httpd-php&quot;&gt;ObjectType fn=&quot;force-type&quot; type=&quot;magnus-internal/x-httpd-php&quot;Service fn=php4_execute [inikey=value inikey=value ...]&lt;/Object&gt;</pre></div>       </div>       After that you can configure a directory in the Administration server and assign it       the style <i>x-httpd-php</i>. All files in it will get executed as PHP.       This is nice to hide PHP usage by renaming files to <var class="filename">.html</var>.      </p>     </li>     <li class="listitem">      <span class="simpara">       Restart your web service and apply changes      </span>     </li>     <li class="listitem">      <span class="simpara">       Do it for each web server instance you want PHP to run      </span>     </li>    </ul>    <blockquote><p><b class="note">Note</b>:            More details about setting up      PHP as an NSAPI filter can be found here:      <a href="http://benoit.noss.free.fr/php/install-php4.html" class="link external">&raquo; http://benoit.noss.free.fr/php/install-php4.html</a>     <br />    </p></blockquote>    <blockquote><p><b class="note">Note</b>:            The stacksize that PHP uses depends on the configuration of the web server. If you get      crashes with very large PHP scripts, it is recommended to raise it with the Admin Server      (in the section &quot;MAGNUS EDITOR&quot;).     <br />    </p></blockquote>   </div>      <div id="install.windows.sun.phpini" class="sect2">    <h3 class="title">CGI environment and recommended modifications in php.ini</h3>    <p class="para">     Important when writing PHP scripts is the fact that Sun JSWS/Sun ONE     WS/iPlanet/Netscape is a multithreaded web server. Because of that all     requests are running in the same process space (the space of the web server     itself) and this space has only one environment. If you want to get CGI     variables like <i>PATH_INFO</i>, <i>HTTP_HOST</i>     etc. it is not the correct way to try this in the old PHP  way with     <a href="function.getenv.html" class="function">getenv()</a> or a similar way (register globals to     environment, <i>$_ENV</i>). You would only get the environment     of the running web server without any valid CGI variables!    </p>    <blockquote><p><b class="note">Note</b>:            Why are there (invalid) CGI variables in the environment?     <br />           Answer: This is because you started the web server process from the admin server      which runs the startup script of the web server, you wanted to start, as a CGI script      (a CGI script inside of the admin server!). This is why the environment of      the started web server has some CGI environment variables in it. You can test      this by starting the web server not from the administration server. Use      the command line as root user and start it manually - you will see      there are no CGI-like environment variables.     <br />    </p></blockquote>    <p class="para">     Simply change your scripts to get CGI variables in the correct way for     PHP 4.x by using the superglobal <var class="varname"><a href="reserved.variables.server.html" class="classname">$_SERVER</a></var>. If you have     older scripts which use <var class="varname">$HTTP_HOST</var>, etc., you should turn     on <i>register_globals</i> in <var class="filename">php.ini</var> and change the variable     order too (important: remove <i>&quot;E&quot;</i> from it,     because you do not need the environment here):     <div class="example-contents"><div class="cdata"><pre>variables_order = &quot;GPCS&quot;register_globals = On</pre></div>     </div>    </p>   </div>      <div id="install.windows.sun.specialpages" class="sect2">    <h3 class="title">Special use for error pages or self-made directory listings (PHP &gt;= 4.3.3)</h3>    <p class="para">     You can use PHP to generate the error pages for <i>&quot;404 Not Found&quot;</i>     or similar. Add the following line to the object in <var class="filename">obj.conf</var> for     every error page you want to overwrite:     <div class="example-contents"><div class="cdata"><pre>Error fn=&quot;php4_execute&quot; code=XXX script=&quot;/path/to/script.php&quot; [inikey=value inikey=value...]</pre></div>     </div>     where <i>XXX</i> is the HTTP error code. Please delete     any other <i>Error</i> directives which could interfere with yours.     If you want to place a page for all errors that could exist, leave     the <i>code</i> parameter out. Your script can get the HTTP status code     with <var class="varname"><a href="reserved.variables.server.html" class="classname">$_SERVER['ERROR_TYPE']</a></var>.    </p>    <p class="para">     Another possibility is to generate self-made directory listings.     Just create a PHP script which displays a directory listing and     replace the corresponding default Service line for     <i>type=&quot;magnus-internal/directory&quot;</i>     in <var class="filename">obj.conf</var> with the following:     <div class="example-contents"><div class="cdata"><pre>Service fn=&quot;php4_execute&quot; type=&quot;magnus-internal/directory&quot; script=&quot;/path/to/script.php&quot; [inikey=value inikey=value...]</pre></div>     </div>     For both error and directory listing pages the original URI and     translated URI are in the variables <var class="varname"><a href="reserved.variables.server.html" class="classname">$_SERVER['PATH_INFO']</a></var> and     <var class="varname"><a href="reserved.variables.server.html" class="classname">$_SERVER['PATH_TRANSLATED']</a></var>.    </p>   </div>      <div id="install.windows.sun.notes" class="sect2">    <h3 class="title">Note about <a href="function.nsapi-virtual.html" class="function">nsapi_virtual()</a> and subrequests (PHP &gt;= 4.3.3)</h3>    <p class="para">     The NSAPI module now supports the <a href="function.nsapi-virtual.html" class="function">nsapi_virtual()</a> function     (alias: <a href="function.virtual.html" class="function">virtual()</a>)     to make subrequests on the web server and insert the result in the web page.     The problem is, that this function uses some undocumented features from     the NSAPI library.    </p>    <p class="para">     Under Unix this is not a problem, because the module automatically looks     for the needed functions and uses them if available.     If not, <a href="function.nsapi-virtual.html" class="function">nsapi_virtual()</a> is disabled.    </p>    <p class="para">     Under Windows limitations in the DLL handling need the use of a automatic     detection of the most recent <var class="filename">ns-httpdXX.dll</var> file.     This is tested for servers till version 6.1. If a newer version of the     Sun server is used, the detection fails and <a href="function.nsapi-virtual.html" class="function">nsapi_virtual()</a>     is disabled.    </p>    <p class="para">     If this is the case, try the following:     Add the following parameter to <i>php4_init</i> in     <var class="filename">magnus.conf</var>/<var class="filename">obj.conf</var>:     <div class="example-contents"><div class="cdata"><pre>Init fn=php4_init ... server_lib=&quot;ns-httpdXX.dll&quot;</pre></div>     </div>     where <i>XX</i> is the correct DLL version number.     To get it, look in the server-root for the correct DLL name. The     DLL with the biggest filesize is the right one.    </p>    <p class="para">     You can check the status by using the <a href="function.phpinfo.html" class="function">phpinfo()</a> function.    </p>    <blockquote><p><b class="note">Note</b>:            But be warned: Support for <a href="function.nsapi-virtual.html" class="function">nsapi_virtual()</a> is EXPERIMENTAL!!!     <br />    </p></blockquote>   </div>     </div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="install.windows.apache2.html">Apache 2.0.x on Microsoft Windows</a></div> <div class="next" style="text-align: right; float: right;"><a href="install.windows.omnihttpd.html">OmniHTTPd Server</a></div> <div class="up"><a href="install.windows.html">Installation on Windows systems</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?