Cameron Laird's personal notes on Apache

The Apache HTTP server delivers many of these pages.

Comanche is a very interesting COnfiguration MANager for apaCHE.

Apache Week is great.

Internet Explorer 4.01 has an error that often confuses Apache workers. The symptom is something like this:

The occurrence is that when you submit a form and then get a response page, it always contains 'HTTP/1.1 100 Continue' at the top of the page without this being written in the neoscript on the page or in the html. I have since been playing with this problem and have narrowed it down to that this only occurrs when the form was submitted using 'method=post' in the form html tag. If you use 'method=get' the 'HTTP/1.1 100 Continue' does not appear and everything on the page comes out normal.
Apache (in later versions) has a directive which forces the active protocol down to 1.0:
BrowserMatch "MSIE 4\.0" nokeepalive downgrade-1.0 force-response-1.0

Cameron Laird's personal notes on Apache/claird@phaseit.net