DO NOT REPLY [Bug 19355] New: - mod_include allows invalid ETag headers

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=19355

mod_include allows invalid ETag headers

   Summary: mod_include allows invalid ETag headers
   Product: Apache httpd-2.0
   Version: HEAD
  Platform: All
OS/Version: Linux
Status: UNCONFIRMED
  Severity: Minor
  Priority: Other
 Component: mod_include
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


this bug was first reported to dev@httpd.apache.org

http://marc.theaimsgroup.com/?l=apache-httpd-dev&m=105120818606501&w=2

mod_include has an ETag bug when activated using XBitHack Full.  in general, 
default_handler generates an ETag header for documents it serves.  because 
embedded SSI tags have the ability to alter the content of a document, 
mod_include strips outgoing ETag headers from responses it enters.  however, 
the method by which mod_include strips these headers is insufficient in cases 
where default_handler decides a 304 is warranted.

consider the following series of requests when XBitHack is activated for a 
document in DocumentRoot (uninteresting headers snipped for brevity)

GET /ssi.html HTTP/1.1

HTTP/1.1 200 OK
Last-Modified: Thu, 24 Apr 2003 16:50:50 GMT

-

GET /ssi.html HTTP/1.1
If-Modified-Since: Thu, 24 Apr 2003 16:50:50 GMT

HTTP/1.1 304 Not Modified
Last-Modified: Thu, 24 Apr 2003 16:50:50 GMT
ETag: "35157-5f-4861ce80"


while mod_include removes the ETag header from the first request, 
default_handler generates an (almost always invalid) ETag on the subsequent 304.

the below patch seems to be a better way for mod_include to handle ETag 
generation (or, rather, supression).


Index: modules/filters/mod_include.c
===
RCS file: /home/cvspublic/httpd-2.0/modules/filters/mod_include.c,v
retrieving revision 1.233
diff -u -r1.233 mod_include.c
--- modules/filters/mod_include.c   3 Feb 2003 17:53:01 -   1.233
+++ modules/filters/mod_include.c   24 Apr 2003 17:46:13 -
@@ -3338,6 +3338,12 @@
 f->r->no_local_copy = 1;
 }
 
+/* Don't allow ETag headers to be generated - see RFC2616 - 13.3.4.
+ * We don't know if we are going to be including a file or executing
+ * a program - in either case a strong ETag header will likely be invalid.
+ */
+apr_table_setn(f->r->notes, "no-etag", 1);
+
 return OK;
 }
 
@@ -3407,14 +3413,13 @@
  */
 apr_table_unset(f->r->headers_out, "Content-Length");
 
-/* Always unset the ETag/Last-Modified fields - see RFC2616 - 13.3.4.
+/* Always unset the Last-Modified fields - see RFC2616 - 13.3.4.
  * We don't know if we are going to be including a file or executing
  * a program which may change the Last-Modified header or make the 
  * content completely dynamic.  Therefore, we can't support these
  * headers.
  * Exception: XBitHack full means we *should* set the Last-Modified field.
  */
-apr_table_unset(f->r->headers_out, "ETag");
 
 /* Assure the platform supports Group protections */
 if ((*conf->xbithack == xbithack_full)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 19359] New: - proxy module docs should show need to load sub-module

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=19359

proxy module docs should show need to load sub-module

   Summary: proxy module docs should show need to load sub-module
   Product: Apache httpd-2.0
   Version: 2.0.45
  Platform: All
   URL: http://httpd.apache.org/docs-2.0/mod/mod_proxy.html
OS/Version: All
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Documentation
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


http://httpd.apache.org/docs-2.0/mod/mod_proxy.html

The mod_proxy documentation does not mention that,
when you have mod_proxy loaded as a DSO,
you need to load sub modules.
The sub-modules are ftp, http, or connect.
As far as I can tell, whether you select ftp or http
depends on the target type.
For example, the following configuration directive:

ProxyPass / http://localhost:8080/

would require the following two LoadModule lines:
LoadModule proxy_modulemodules/mod_proxy.so
LoadModule proxy_http_module   modules/mod_proxy_http.so

I expect that the proxy_connect sub-module is required for 
any of the Connect configuration directives.

Personally, I would like to see this information in a paragraph at the top of
the module documentation, about where you now see the paragraph warning you that
this documentation may be inaccurate.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 19362] New: - .phtml files are not processed by libphp4 when addressing with http://localhost/somefile.phtml

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=19362

.phtml files are not processed by libphp4 when addressing with 
http://localhost/somefile.phtml

   Summary: .phtml files are not processed by libphp4 when
addressing with http://localhost/somefile.phtml
   Product: Apache httpd-2.0
   Version: 2.0.45
  Platform: PC
OS/Version: Other
Status: NEW
  Severity: Minor
  Priority: Other
 Component: Runtime Config
AssignedTo: bugs@httpd.apache.org
ReportedBy: [EMAIL PROTECTED]


This is an obscure little bug:

Initially, I add the following line to httpd.conf, as per instructions for 
libphp4:

AddType application/x-httpd-php .php .phtml

I create a test.php file that contains only the command:



And it works--it displays the php module's configuration and status.  Next, I
copy the file to test.phtml, and now, very strangely, I get a textual display of
"".  At first, I thought apache wasn't reading the second
extension, so I added some more extensions: .php3 .php4, and a couple that
aren't normally used for php: .phtm .ptl.  I copied my test.php to
test. and it worked for all of them, but still, not phtml.
 Finally, as some chance neuron made me do this: I addressed the file using my
server's FQDN: www.sbronner.com/test.phtml, instead of localhost, as I had been.
 Now, miraculously, it shows up perfectly.
--
Sebastian J. Bronner
[EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 19362] - .phtml files are not processed by libphp4 when addressing with http://localhost/somefile.phtml

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=19362

.phtml files are not processed by libphp4 when addressing with 
http://localhost/somefile.phtml

[EMAIL PROTECTED] changed:

   What|Removed |Added

 OS/Version|Other   |Linux

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 15207] - mod_proxy alters URIs when acting as a reverse proxy

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=15207

mod_proxy alters URIs when acting as a reverse proxy





--- Additional Comments From [EMAIL PROTECTED]  2003-04-27 09:37 ---
A reverse proxy doesn't need to be transparent. It may be as well a caching
proxy, that approached the backend server only if it doens't have a fresh copy
of the requested object. There fore, it MAY alter the URL. However, there is a
bug in this alteration: In the reverse proxy case, unescaping is done twice. In
the first   unesacping, the core does this for any non-proxy request. However,
this is done before reverse proxy requests are identified by matching the URL
with ProxyPass directives. Therefore, the second unescaping, in the function
ap_proxy_canonenc in proxy_util.c, should be done only for a standard proxy, and
not for a reverse proxy, and the line

if (isenc && ch == '%') {

(proxy_util.c:206 in httpd_2.0.45) should be replaced by

if (isenc == PROXYREQ_PROXY && ch == '%') {

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 19359] - proxy module docs should show need to load sub-module

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=19359

proxy module docs should show need to load sub-module

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
Version|2.0.45  |HEAD



--- Additional Comments From [EMAIL PROTECTED]  2003-04-27 14:14 ---
Mod_proxy docs are waiting for a revision in general.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 19362] - .phtml files are not processed by libphp4 when addressing with http://localhost/somefile.phtml

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=19362

.phtml files are not processed by libphp4 when addressing with 
http://localhost/somefile.phtml





--- Additional Comments From [EMAIL PROTECTED]  2003-04-27 14:15 ---
It smells like a configuration issue. Are you modifying the appropriate virtual
host (double checked)?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Bug report for Apache httpd-1.3 [2003/04/27]

2003-04-27 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 7741|New|Nor|2002-04-04|some directives may be placed outside of proper co|
| 7982|New|Maj|2002-04-11|mod_rewrite URL string empty when passed unicoded |
| 8311|Opn|Nor|2002-04-19|error in PUT directive gives confusing error messa|
| 8329|New|Nor|2002-04-20|mime_magic gives 500 and no error_log on Microsoft|
| 8372|New|Nor|2002-04-22|Threadsaftey issue in Rewrite's cache [Win32/OS2/N|
| 8508|New|Cri|2002-04-25|apxs generates incorrect LoadModule directive.|
| 8683|New|Nor|2002-04-30|Insecure file permissions - make install  |
| 8849|New|Nor|2002-05-07|make install errors as root on NFS shares |
| 8882|New|Enh|2002-05-07|[PATCH] mod_rewrite communicates with external rew|
| 9037|New|Min|2002-05-13|Slow performance when acessing an unresolved IP ad|
| 9126|New|Blk|2002-05-15|68k-next-openstep v. 4.0  |
| 9201|New|Maj|2002-05-17|Wrong REQUEST_URI with malformed HTTP queries |
| 9427|New|Min|2002-05-26|bad negotiation when started with LANG=cs_CZ  |
| 9678|New|Maj|2002-06-06|UTF-8 streams break some browsers |
| 9726|New|Min|2002-06-09|Double quotes should be flagged as T_HTTP_TOKEN_ST|
| 9894|New|Maj|2002-06-16|getline sub in support progs collides with existin|
| |New|Nor|2002-06-19|Incorrect default manualdir value with layout.|
|10025|New|Nor|2002-06-19|mod_rewrite broken in 1.3.26 ?|
|10038|New|Min|2002-06-20|ab benchmaker hangs on 10K https URLs with keepali|
|10052|New|Nor|2002-06-20|mod_proxy inserts a blank new line int headers whe|
|10073|New|Maj|2002-06-20|upgrade from 1.3.24 to 1.3.26 breaks include direc|
|10109|New|Maj|2002-06-21|problem running 1.3.26 and php on Solaris 7 / Spar|
|10169|New|Nor|2002-06-24|Apache seg faults due to attempt to access out of |
|10172|New|Maj|2002-06-24|Can't load libphp4.so with apache 1.3.26 + SSL 1.4|
|10178|New|Maj|2002-06-24|Proxy server cuts off begining of buffer when spec|
|10182|New|Nor|2002-06-24|Apache 1.3.26 and MOD_SO on OpenBSD 3.0   |
|10195|New|Nor|2002-06-24|Configure script erroneously detects system Expat |
|10199|New|Nor|2002-06-24|Configure can't handle directory names with unders|
|10243|New|Maj|2002-06-26|CGI scripts not getting POST data |
|10280|New|Nor|2002-06-27|notes / pnotes seem to no longer work in 1.3.27   |
|10354|New|Nor|2002-06-30|ErrorDocument(.htaccess) fails when passed URL wit|
|10470|New|Cri|2002-07-04|proxy module will not correctly serve mixed case f|
|10666|New|Enh|2002-07-10|line-end comment error message missing file name  |
|10744|New|Nor|2002-07-12|suexec might fail to open log file|
|10747|New|Maj|2002-07-12|ftp SIZE command and 'smart' ftp servers results i|
|10760|New|Maj|2002-07-12|empty ftp directory listings from cached ftp direc|
|10890|New|Cri|2002-07-17|if "et" locale is used, configure fails   |
|10939|New|Maj|2002-07-18|directory listing errors  |
|11020|New|Maj|2002-07-21|APXS only recognise tests made by ./configure |
|11236|New|Min|2002-07-27|Possible Log exhaustion bug?  |
|11265|New|Blk|2002-07-29|mod_rewrite fails to encode special characters|
|11291|New|Nor|2002-07-30|Cygwin script with long filename fails.Path separa|
|11668|New|Maj|2002-08-13|mod proxy & mod_rewite generate a invalid http res|
|11765|New|Nor|2002-08-16|.apaci.install.tmp installs in existing httpd.conf|
|11986|New|Nor|2002-08-23|Restart hangs when piping logs on rotation log pro|
|11993|Opn|Cri|2002-08-23|PDFs served through ProxyPass show up blank   |
|11998|New|Maj|2002-08-23|mod_usertrack spot_cookie() will not allow Apache |
|12074|New|Nor|2002-08-27|Compilation fails due to a _Isinf not found   |
|12096|New|Nor|2002-08-27|apxs does not handle binary dists installed at non|
|12391|New|Maj|2002-09-07|DBM_LIB should be blank for OS X 10.2 |
|12551|New|Nor|2002-09-11|mod_proxy fails to shutdown when client cancels   |
|12574|

Bug report for Apache httpd-2.0 [2003/04/27]

2003-04-27 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=CriticalMAJ=Major |
| |   |   MIN=Minor   NOR=Normal  ENH=Enhancement   |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
| 7483|Ass|Enh|2002-03-26|Add FileAction directive to assign a cgi interpret|
| 7862|New|Enh|2002-04-09|suexec never log a group name.|
| 7882|Opn|Nor|2002-04-09|env LIBS ignored during build |
| 7991|New|Enh|2002-04-11|Enhance ExpiresByType to accept wildcards (mod_exp|
| 8167|New|Min|2002-04-16|--with-module does not build MODULE_DIRS correctly|
| 8431|Opn|Nor|2002-04-23|AddHandler/Action not-found when file does not exi|
| 8483|Opn|Min|2002-04-24|apache_2.0 .msi installer breaks .log and .conf fi|
| 8493|Ass|Nor|2002-04-25|mod_rewrite does not try index.html like it used t|
| 8500|Ass|Cri|2002-04-25|authorization user does not logged|
| 8713|New|Min|2002-05-01|No Errorlog on PROPFIND/Depth:Infinity|
| 8867|Opn|Cri|2002-05-07|expors.c generation fails when using a symlink to |
| 8880|New|Enh|2002-05-07|AcceptPathInfo does not apply to DirectoryIndex fi|
| 8910|Ass|Nor|2002-05-08|MultiviewsMatch Any does not work as expected |
| 8925|New|Cri|2002-05-09|Service Install (win32 .msi/.exe) fails for port i|
| 8993|Opn|Nor|2002-05-10|openssl library location(s) are hardcoded in confi|
| 9011|Opn|Min|2002-05-12|Worker-MPM error log: the listener thread didn't e|
| 9046|New|Min|2002-05-13|Cleaned up PNG/MNG converted icons|
| 9484|New|Enh|2002-05-29|Dynamic ServerAdmin configuration |
| 9488|Opn|Nor|2002-05-29|HTTP/0.9 requests spoken on https port returns HTT|
| 9587|New|Min|2002-06-03|Wrong icon with FancyIndexing |
| 9656|New|Nor|2002-06-06|Support of FTP Proxy only partially documented|
| 9727|New|Min|2002-06-09|Double quotes should be flagged as T_HTTP_TOKEN_ST|
| 9945|New|Enh|2002-06-18|[PATCH] new funtionality for apache bench |
| 9953|New|Maj|2002-06-18|Normal incoming headers disappear when +ExportCert|
|10114|Ass|Enh|2002-06-21|Negotiation gives no weight to order, only q value|
|10154|Ass|Nor|2002-06-23|ApacheMonitor interferes with service uninstall/re|
|10266|Opn|Maj|2002-06-27|apache (prefork, ssl) hangs after some hours of ru|
|10434|Ass|Enh|2002-07-03|mod_rewrite doesn't fill the variables as HTTPS   |
|10515|New|Maj|2002-07-05|cgi lock when writing to stderr   |
|10575|New|Enh|2002-07-09|no option to autoindex auth protected files/folder|
|10678|New|Maj|2002-07-11|Several .htaccess files are consulted, REMOTE_USER|
|10722|New|Nor|2002-07-12|ProxyPassReverse doesn't change cookie paths  |
|10774|New|Cri|2002-07-13|apr_shm_create core dump  |
|10775|New|Cri|2002-07-13|SCRIPT_NAME wrong value   |
|11000|New|Enh|2002-07-20|Mutex permission problems: configuration template |
|11035|New|Min|2002-07-22|Apache adds double entries to headers generated by|
|4|Opn|Nor|2002-07-24|Images[/anything] stored in AFS served corruptly  |
|11259|New|Enh|2002-07-29|'make install' should provide a deinstaller   |
|11294|New|Enh|2002-07-30|desired vhost_alias option|
|11331|New|Cri|2002-07-31|stale cgi process entries when using suexec   |
|11427|Opn|Maj|2002-08-02|Possible Memory Leak in CGI script invocation |
|11475|New|Min|2002-08-05|usertrack can read Cookie2 header but spec says it|
|11514|New|Maj|2002-08-07|worker MPM stalls on UnixWare 7.11|
|11521|New|Nor|2002-08-07|Addition of  Japanese error message   |
|11540|New|Nor|2002-08-07|ProxyTimeout ignored  |
|11580|Opn|Enh|2002-08-09|generate Content-Location headers |
|11602|New|Min|2002-08-10|REMOTE_USER variable lost in conjunction with Scri|
|11637|New|Nor|2002-08-12|PROPFIND returns invalid XML  |
|11660|New|Enh|2002-08-13|a New Hebrew Translation for "Test Page for Apache|
|11769|New|Nor|2002-08-16|2.0.39 Bindist does not work on all versions of So|
|11960|New|Maj|2002-08-23|Apache default config doesn't include uk langauge |
|12033|

DO NOT REPLY [Bug 16282] - 2.0.44: missing manpages?

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=16282

2.0.44: missing manpages?

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2003-04-27 21:52 ---
The manpages are generated from our XML sources now and will appear again in the
next release (2.0.46).

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 16282] - 2.0.44: missing manpages?

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=16282

2.0.44: missing manpages?

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 17566] - missing files from docs/man (httpd.8 apachectl.8)

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=17566

missing files from docs/man (httpd.8 apachectl.8)

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 17603] - No manual pages for httpd or apachectl

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=17603

No manual pages for httpd or apachectl

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 13609] - apachectl does not work under Tru64 Unix

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=13609

apachectl does not work under Tru64 Unix

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 16415] - apachectl script execution

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=16415

apachectl script execution

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 9464] - Error 400 when using mod_rewrite

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=9464

Error 400 when using mod_rewrite

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 9878] - entering DAV directives into httpd.conf causes syntax error, server will not start

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=9878

entering DAV directives into httpd.conf causes syntax error, server will not 
start

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10878] - Seg violation, mod_dav in apache 2.0.39, Win98, PC

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10878

Seg violation, mod_dav in apache 2.0.39, Win98, PC

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10235] - enable-mods-shared=all fails, IPv6 Fails/Caldera OpenUNIX 8.0.[01]

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10235

enable-mods-shared=all fails, IPv6 Fails/Caldera OpenUNIX 8.0.[01]

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10353] - CustomLogs piping does not work

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10353

CustomLogs piping does not work

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10459] - Incorrect bytes logged with status 206 (partial content)

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10459

Incorrect bytes logged with status 206 (partial content)

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10529] - http locks up in lwp_cond_wait at startup

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10529

http locks up in lwp_cond_wait at startup

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10618] - killing children takes too long

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10618

killing children takes too long

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DO NOT REPLY [Bug 10644] - no support for dbm rewrite maps

2003-04-27 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
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=10644

no support for dbm rewrite maps

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]