install/windows/apache2.xml
330a38c4d45556b49e06ebe6d39e0e311534cd8c
...
...
@@ -1,7 +1,7 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
3
<sect1 xml:id="install.windows.apache2" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
4
-
<title>Apache 2.x on Microsoft Windows</title>
4
+
<title>Installation for Apache 2.x on Windows systems</title>
5
5
<para>
6
6
This section contains notes and hints specific to Apache 2.x installs
7
7
of PHP on Microsoft Windows systems.
...
...
@@ -13,14 +13,14 @@
13
13
</para>
14
14
</note>
15
15

16
-
<para>
16
+
<simpara>
17
17
It is strongly recommended to consult the
18
18
<link xlink:href="&url.apache2.docs;">Apache Documentation</link>
19
-
to get have a basic understanding of the Apache 2.x Server.
19
+
to get a basic understanding of the Apache 2.x Server.
20
20
Also consider reading the
21
21
<link xlink:href="&url.apache2.windows;">Windows specific notes</link>
22
22
for Apache 2.x before reading on here.
23
-
</para>
23
+
</simpara>
24
24

25
25
<para>
26
26
Download the most recent version of
...
...
@@ -39,6 +39,12 @@
39
39

40
40
<sect2 xml:id="install.windows.apache2.module">
41
41
<title>Installing as an Apache handler</title>
42
+
<note>
43
+
<simpara>
44
+
When using the apache2handler SAPI, the Thread Safe (TS) version of
45
+
PHP must be used.
46
+
</simpara>
47
+
</note>
42
48
<para>
43
49
To load the PHP module for Apache 2.x, the following lines in the
44
50
Apache &httpd.conf; configuration file must be inserted:
...
...
@@ -115,15 +121,15 @@ PHPIniDir "C:/php"
115
121
Install the module according to the instructions that will come with it.
116
122
</para>
117
123
<para>
118
-
Configure your web server as shown below, taking care to adjust any paths
119
-
to reflect how you have installed things on your particular system:
124
+
Configure the web server as shown below, taking care to adjust any paths
125
+
to reflect how it is installed on the system:
120
126

121
127
<example>
122
128
<title>Configure Apache to run PHP as FastCGI</title>
123
129
<programlisting>
124
130
<![CDATA[
125
131
LoadModule fcgid_module modules/mod_fcgid.so
126
-
# Where is your php.ini file?
132
+
# Where is the php.ini file?
127
133
FcgidInitialEnv PHPRC "c:/php"
128
134
<FilesMatch \.php$>
129
135
SetHandler fcgid-script
...
...
@@ -133,7 +139,7 @@ FcgidWrapper "c:/php/php-cgi.exe" .php
133
139
</programlisting>
134
140
</example>
135
141

136
-
Files with a .php extension will now be executed by the PHP FastCGI
142
+
Files with a <literal>.php</literal> extension will now be executed by the PHP FastCGI
137
143
wrapper.
138
144
</para>
139
145
</sect2>
140
146