stas 02/05/22 19:54:33
Modified: src/docs/2.0/user/compat compat.pod
src/docs/2.0/user/config config.pod
Log:
some minor adjustments
Revision Changes Path
1.19 +10 -2 modperl-docs/src/docs/2.0/user/compat/compat.pod
Index: compat.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/compat/compat.pod,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- compat.pod 23 May 2002 02:29:26 -0000 1.18
+++ compat.pod 23 May 2002 02:54:33 -0000 1.19
@@ -303,11 +303,19 @@
and hurts performance when using threaded MPMs, since it has to use
thread local storage.
-For any location that uses C<Apache-E<gt>request>, you need to
-configure:
+For any location that uses C<Apache-E<gt>request> and uses
+C<"modperl"> handler, you need to configure:
<Location ...>
+ SetHandler modperl
PerlOptions +GlobalRequest
+ ...
+ </Location>
+
+It's already enabled for:
+
+ <Location ...>
+ SetHandler perl-script
...
</Location>
1.11 +5 -5 modperl-docs/src/docs/2.0/user/config/config.pod
Index: config.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/config/config.pod,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- config.pod 23 May 2002 02:29:26 -0000 1.10
+++ config.pod 23 May 2002 02:54:33 -0000 1.11
@@ -184,16 +184,16 @@
This setting is enabled by default for sections configured as:
<Location ...>
- ...
SetHandler perl-script
+ ...
</Location>
And can be disabled with:
<Location ...>
- ...
SetHandler perl-script
PerlOptions -GlobalRequest
+ ...
</Location>
@@ -250,17 +250,17 @@
This option is enabled by default for sections configured as:
<Location ...>
- ...
SetHandler perl-script
+ ...
</Location>
Since this option adds an overhead to each request, if you don't need
this functionality you can turn it off for a certain section:
<Location ...>
- ...
SetHandler perl-script
Options -SetupEnv
+ ...
</Location>
or globally:
@@ -308,8 +308,8 @@
For sections configured as:
<Location ...>
- ...
SetHandler modperl
+ ...
</Location>
it's always turned off and cannot be turned on.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]