stas 2003/10/13 21:09:59
Modified: src/docs/2.0/user/troubleshooting troubleshooting.pod
src/docs/2.0/api/Apache PerlSections.pod
Log:
document the bug with 2.0.47 and earlier (<Perl> directive missing closing
'>')
Revision Changes Path
1.14 +6 -0
modperl-docs/src/docs/2.0/user/troubleshooting/troubleshooting.pod
Index: troubleshooting.pod
===================================================================
RCS file:
/home/cvs/modperl-docs/src/docs/2.0/user/troubleshooting/troubleshooting.pod,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -u -r1.13 -r1.14
--- troubleshooting.pod 29 Aug 2003 17:33:55 -0000 1.13
+++ troubleshooting.pod 14 Oct 2003 04:09:59 -0000 1.14
@@ -70,6 +70,12 @@
Update DBI to at least version 1.31.
+
+=head2 E<lt>PerlE<gt> directive missing closing 'E<gt>'
+
+See the
L<Apache::PerlSections|docs::2.0::api::Apache::PerlSections/E_lt_PerlE_gt__directive_missing_closing__E_gt__>
manpage.
+
+
=head1 Shutdown and Restart
1.6 +25 -0 modperl-docs/src/docs/2.0/api/Apache/PerlSections.pod
Index: PerlSections.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/2.0/api/Apache/PerlSections.pod,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -u -r1.5 -r1.6
--- PerlSections.pod 9 Jun 2003 06:07:25 -0000 1.5
+++ PerlSections.pod 14 Oct 2003 04:09:59 -0000 1.6
@@ -175,4 +175,29 @@
Would create a new alias. The source code of C<Apache::PerlSections>
is a good place to look for a practical example.
+=head1 Bugs
+
+=head2 E<lt>PerlE<gt> directive missing closing 'E<gt>'
+
+httpd-2.0.47 and earlier had a bug in the configuration parser which
+caused the startup failure with the following error:
+
+ Starting httpd:
+ Syntax error on line ... of /etc/httpd/conf/httpd.conf:
+ <Perl> directive missing closing '>' [FAILED]
+
+This has been fixed in httpd-2.0.48. If you can't upgrade to this or a
+higher version, please add a space before the closing 'E<gt>' of the
+opening tag as a workaround. So if you had:
+
+ <Perl>
+ # some code
+ </Perl>
+
+change it to be:
+
+ <Perl >
+ # some code
+ </Perl>
+
=cut
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]