Running CGI scripts after mod_perl.
I have a mod_perl 2 module, running in Apache 2.2, - package Apache2::; use 5; use strict; use Apache2::Const -compile => qw(DECLINED); sub handler { return Apache2::Const::DECLINED; } 1; -
[mp2] sendfile() bug report with Apache-Test test attached
Hello, >From what I've read, Apache should understand that it needs to apply the byterange filter whenever $r->sendfile is called and the Range: header is present in the incoming request. However what I'm seeing is that the entire file is returned for each byte range requested by the client. Acc