some user notes incorporated

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@114099 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Friedhelm Betz 2003-01-31 12:31:26 +00:00
parent 83b43782f7
commit 74e12503ad

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<sect1 id="install.apache2">
<title>Servers-Apache 2.0</title>
<para>
@ -216,7 +216,7 @@ Action application/x-httpd-php "/php/php.exe"
<title>PHP and Apache 2.0 as Module</title>
<programlisting role="apache">
<![CDATA[
LoadModule php4_module c:/php/sapi/php4apache2.dll
LoadModule php4_module "c:/php/sapi/php4apache2.dll"
AddType application/x-httpd-php .php
]]>
</programlisting>
@ -225,7 +225,10 @@ AddType application/x-httpd-php .php
<note>
<simpara>
Remember to substitute the <filename>c:/php/</filename> for your actual
path to <literal>PHP</literal> in the above examples.
path to <literal>PHP</literal> in the above examples. Take care to use
<filename>php4apache2.dll</filename> in your LoadModule directive and
<emphasis>not</emphasis><filename>php4apche.dll</filename>. The latter one
is designd to run with Apache 1.3.x.
</simpara>
</note>
<warning>