RE: httpd attempts to open file.html/.htaccess (is this a bug?)

2007-06-13 Thread Allen Pulsifer
Hello William, Thanks for the suggestions. I have a fix that is pretty simple (and therefore I hope, unlikely to break anything ;-). Later today, after I've compiled and tested it on both Windows and Linux, I'll post it to the list. Allen

RE: httpd attempts to open file.html/.htaccess (is this a bug?)

2007-06-12 Thread Allen Pulsifer
When processing a GET /.../file.html, Apache httpd briefly treats file.html as a directory and attempts to open docroot/.../file.html/.htaccess. The os returns ENOTDIR, and then processing of the request continues. Yes, this is a somewhat known issue. Previously it caused issues

Re: httpd attempts to open file.html/.htaccess (is this a bug?)

2007-06-12 Thread William A. Rowe, Jr.
Allen Pulsifer wrote: Hello Paul and Dev List, Thanks for the reply. I checked out the links and did some code tracing with the debugger. As one of the links pointed out, the problem is in the block of code attached below from ap_directory_walk() in server/request.c just a quick note to

httpd attempts to open file.html/.htaccess (is this a bug?)

2007-06-11 Thread Allen Pulsifer
Summary: When processing a GET /.../file.html, Apache httpd briefly treats file.html as a directory and attempts to open docroot/.../file.html/.htaccess. The os returns ENOTDIR, and then processing of the request continues. There would seem to be no reason for httpd to attempt to open

Re: httpd attempts to open file.html/.htaccess (is this a bug?)

2007-06-11 Thread Giuliano Gavazzi
On 11 Jun 2007, at 15:01, Allen Pulsifer wrote: When processing a GET /.../file.html, Apache httpd briefly treats file.html as a directory and attempts to open docroot/.../file.html/.htaccess. The os returns ENOTDIR, and then processing of the request continues. [...] Does anyone else see

Re: httpd attempts to open file.html/.htaccess (is this a bug?)

2007-06-11 Thread Paul Querna
Allen Pulsifer wrote: Summary: When processing a GET /.../file.html, Apache httpd briefly treats file.html as a directory and attempts to open docroot/.../file.html/.htaccess. The os returns ENOTDIR, and then processing of the request continues. Yes, this is a somewhat known issue.