DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9644>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9644 error logs entries for external filter, but page served ok Summary: error logs entries for external filter, but page served ok Product: Apache httpd-2.0 Version: 2.0.36 Platform: PC OS/Version: Linux Status: NEW Severity: Minor Priority: Other Component: mod_ext_filter AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] I am seeing error logs like the following when using a filter program (a 10 line perl program included below): [Wed Jun 05 13:12:39 2002] [error] [client 127.0.0.1] (9)Bad file descriptor: apr_file_close(child input) I get a log entry whenever a page to which this filter is applied gets included (by INCLUDES) in another document. If the document has three includes I get three error messages for each reference. I don't get an error message if I access the file directly instead of including it. I use the virtual= clause to specify the document. This is occuring in the httpd-2.0_20020605161218.tar.gz snapshot with apr and apr-util from about the same time. I also had the problem with the previous snapshot I was using from a few days ago. The perl program is as follows: #!/usr/bin/perl print "\n<pre>\n"; while (<STDIN>) { s/&/&/; s/</</; s/>/>/; print; } print "</pre>\n" --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
