mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@306096 c90b9560-bf6c-de11-be94-00142212c4b1
65 lines
2.6 KiB
XML
65 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<sect1 xml:id="install.unix.commandline" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<title>CGI and command line setups</title>
|
|
<para>
|
|
By default, PHP is built as both a <acronym>CLI</acronym> and
|
|
<acronym>CGI</acronym> program, which can be used for CGI
|
|
processing. If you are running a web server that PHP has module
|
|
support for, you should generally go for that solution for
|
|
performance reasons. However, the CGI version enables users to run
|
|
different PHP-enabled pages under different user-ids.
|
|
</para>
|
|
&warn.install.cgi;
|
|
|
|
<sect2 xml:id="install.unix.commandline.testing">
|
|
<title>Testing</title>
|
|
<simpara>
|
|
If you have built PHP as a CGI program, you may test your build
|
|
by typing <command>make test</command>. It is always a good idea
|
|
to test your build. This way you may catch a problem with PHP on
|
|
your platform early instead of having to struggle with it later.
|
|
</simpara>
|
|
</sect2>
|
|
|
|
<sect2 xml:id="install.unix.commandline.using-variables">
|
|
<title>Using Variables</title>
|
|
<simpara>
|
|
Some <link linkend="reserved.variables.server">server supplied
|
|
environment variables</link> are not defined in the
|
|
current <link xlink:href="&url.rfc;3875">CGI/1.1 specification</link>.
|
|
Only the following variables are defined there: <varname>AUTH_TYPE</varname>,
|
|
<varname>CONTENT_LENGTH</varname>, <varname>CONTENT_TYPE</varname>,
|
|
<varname>GATEWAY_INTERFACE</varname>, <varname>PATH_INFO</varname>,
|
|
<varname>PATH_TRANSLATED</varname>, <varname>QUERY_STRING</varname>,
|
|
<varname>REMOTE_ADDR</varname>, <varname>REMOTE_HOST</varname>,
|
|
<varname>REMOTE_IDENT</varname>, <varname>REMOTE_USER</varname>,
|
|
<varname>REQUEST_METHOD</varname>, <varname>SCRIPT_NAME</varname>,
|
|
<varname>SERVER_NAME</varname>, <varname>SERVER_PORT</varname>,
|
|
<varname>SERVER_PROTOCOL</varname>, and <varname>SERVER_SOFTWARE</varname>.
|
|
Everything else should be treated as 'vendor extensions'.
|
|
</simpara>
|
|
</sect2>
|
|
|
|
</sect1>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|