test mail

2002-03-04 Thread Murali K. Vemuri
hi just a test mail please ignore. -- regards thanks for your time, Murali Krishna Vemuri --All blue, I write with a Blue Pencil on a Blue Sky.

problems

2002-03-04 Thread Murali K. Vemuri
hi , i wanna add a perl script handler for the apache and i could not understand from the help files. forgive me, i am a newbie in the 'apache configuration'. can someone please suggest me how i can do this... my intention is to call perl scripts directly. -- regards thanks for your time,

[PATCH] Pass one of mod_status style cleanup

2002-03-04 Thread Sander Striker
Hi, Still more issues left in the form of lots of long lines. Maybe the html output could use some cleanup aswell. Anyhow, this is the first pass at getting mod_status.c more into the style we all know. Patch attached to prevent line wrapping/munging. Sander mod_status.patch Description:

Filter Breakage is Re: cvs commit: httpd-2.0/server core.c

2002-03-04 Thread Justin Erenkrantz
On Mon, Mar 04, 2002 at 09:20:03AM -, [EMAIL PROTECTED] wrote: jerenkrantz02/03/04 01:20:03 Modified:server core.c Log: Ensure that net_time filter isn't added on subreqs - we assume that it is added on !r-main requests. This led to infinite loop/SEGV when dealing

bug 7063 and 7797

2002-03-04 Thread Amaury Jacquot
Hi, I have corrected the above bugs by removing a (stupid, imho) test in the mod_auth_digestc file (see the attached patch against 11323) in short, it was basicly testing if whatever after the ? was different I think that, it is not necessary to do so (the important thing is to control access to

Re: problems

2002-03-04 Thread Lars Eilebrecht
According to Murali K. Vemuri: i wanna add a perl script handler for the apache and i could not understand from the help files. This is a developer mailing list. Please ask your questions on the users mailing list. http://httpd.apache.org/userslist.html ciao... -- Lars Eilebrecht

RE: [BUG] Location /dir doesn't work as expected when there is a /dir in the DocumentRoot

2002-03-04 Thread Sander Striker
Hi, I've reproduced the problem reported by Vlad Skvortsov locally and I'll describe it once more together with some feedback I got. From the config: DocumentRoot /htdocs Location /repos DAV svn SVNPath /htdocs/repos /Location In the /htdocs path, there is a

RE: Filter Breakage is Re: cvs commit: httpd-2.0/server core.c

2002-03-04 Thread Ryan Bloom
I now have two further problems 1) Since fast_redirect() is called from a hook, but all hooks are run on this new request - it is possible that some hooks are left to be run from the original request This causes a problem for the AddOutputFilterByType hook (core_filters_type) since it is

Re: Weird network problem with MPM_WORKER

2002-03-04 Thread Greg Ames
Pier Fumagalli wrote: I don't know why, but right now my server started complaining with: [warn] (128)Network is unreachable: connect to listener I just issued a restart and before it was working fine Now, even if I shut it down and start it back again, the error_log is full with those

Re: Weird network problem with MPM_WORKER

2002-03-04 Thread Pier Fumagalli
Jeff Trawick [EMAIL PROTECTED] wrote: The Solaris fixes were required to fix a hang in getaddrinfo(). Yeah, looked at the archive and patched the whole baby before posting... Didn't change the behavior... When I had the same symptom as Pier mentions above, the fix was to get my IPv6

Re: [BUG] Location /dir doesn't work as expected when there isa /dir in the DocumentRoot

2002-03-04 Thread Ian Holsman
Sander Striker wrote: Hi, I've reproduced the problem reported by Vlad Skvortsov locally and I'll describe it once more together with some feedback I got From the config: DocumentRoot /htdocs Location /repos DAV svn SVNPath /htdocs/repos /Location

the it worked page

2002-03-04 Thread Cliff Woolley
Can we get rid of the It worked! page? Please? I'm getting sick of confused people sending us email saying their server has been hijacked. Maybe site is under construction, period. Nothing more informative than that. I know it's going down the road of assume the user is an idiot and

[Patch] Make configure --help reflect requirements

2002-03-04 Thread Thom May
Hi, currently when using --with-module, the configure --help output says --with-module=location while it should say --with-module=module-type:location This patch fixes that up Cheers, -Thom Index: modules/config5m4 === RCS file:

apr_file_open() and caching file descriptors

2002-03-04 Thread Bill Stoddard
I am trying to make mod_mem_cache cache file descriptors. When opening a file to be shared across threads, we must call apr_file_open() with the APR_XTHREAD option (non-cached files are not and should not be opened with this option). So, when I am about to cache a file I am serving, I need to

Re: apr_file_open() and caching file descriptors

2002-03-04 Thread Bill Stoddard
I am trying to make mod_mem_cache cache file descriptors. When opening a file to be shared across threads, we must call apr_file_open() with the APR_XTHREAD option (non-cached files are not and should not be opened with this option). So, when I am about to cache a file I am serving, I need

Re: apr_file_open() and caching file descriptors

2002-03-04 Thread Cliff Woolley
On Mon, 4 Mar 2002, Bill Stoddard wrote: apr_file_open(yadda,..., APR_XTHREAD|APR_DO_NOT_REGISTER_CLEANUP, r-pool); I don't conceptually have a problem with the APR_NO_CLEANUP flag (or whatever it would be called), but I do have a problem with using apr_os_file_get/apr_os_file_put for this.

Re: apr_file_open() and caching file descriptors

2002-03-04 Thread William A. Rowe, Jr.
At 05:29 PM 3/4/2002, you wrote: On Mon, 4 Mar 2002, Bill Stoddard wrote: Rather than an option to not register a cleanup, perhaps a function to kill the cleanup would be more generally useful apr_file_kill_cleanups(apr_file_t *file); You still have a problem with the apr_file_t

Re: Filter Breakage is Re: cvs commit: httpd-2.0/server core.c

2002-03-04 Thread Justin Erenkrantz
On Mon, Mar 04, 2002 at 07:07:03AM -0800, Ryan Bloom wrote: I now have two further problems 1) Since fast_redirect() is called from a hook, but all hooks are run on this new request - it is possible that some hooks are left to be run from the original request This causes a problem for

UDP socket connections

2002-03-04 Thread Tony Toyofuku
Hi, I've seen mention both recently and in 11/1999 on this list regarding Apache 2.0 and support for UDP. I too am interested in UDP support within Apache 2.0. Ideally, I'd like a server that supported both UDP and TCP simultaneously, but if UDP support were a configurable option (either UDP

the three filter types (was: cvs commit: httpd-2.0/server core.c)

2002-03-04 Thread Greg Stein
On Sun, Mar 03, 2002 at 10:34:55PM -, [EMAIL PROTECTED] wrote: rbb 02/03/03 14:34:55 Modified:modules/http http_core.c server core.c Log: Classify some of the input filters as the correct types. Previous to this patch, the type wasn't too

Re: the it worked page

2002-03-04 Thread Lars Eilebrecht
According to Cliff Woolley: Can we get rid of the It worked! page? Please? I'm getting sick of confused people sending us email saying their server has been hijacked. I'd like to keep it, because it is IMHO very useful for most people. And we've put a lot of effort into the translations.

RE: the three filter types (was: cvs commit: httpd-2.0/server core.c)

2002-03-04 Thread Ryan Bloom
On Sun, Mar 03, 2002 at 10:34:55PM -, [EMAIL PROTECTED] wrote: rbb 02/03/03 14:34:55 Modified:modules/http http_core.c server core.c Log: Classify some of the input filters as the correct types. Previous to this patch, the type wasn't too

Re: the three filter types (was: cvs commit: httpd-2.0/server core.c)

2002-03-04 Thread William A. Rowe, Jr.
At 07:53 PM 3/4/2002, you wrote: Just wanted to state that I believe Ryan has the correct distinction here -- that we have three types of filters However, the third type is a misnomer, and we can derive the proper name from the HTTP model: resource Resource, body, content, whichever The trick

Re: the it worked page

2002-03-04 Thread William A. Rowe, Jr.
What about a meta-Content Expires 48 hours after installation :-? Let 'em see it for a day or two, then transition to some content expired message. Or better yet, make the install a bit more insulting to the admin, and clearer... If this happens to be your favorite web site, that site's

httpd-ldap and apr shared memory

2002-03-04 Thread Tim Moloney
I'm trying to get the auth_ldap module to work with 2032 I can successfully build and install both 2032 and httpd-ldap I had to apply the following for httpd-ldap to compile --- util_ldap_cachehorig Fri Feb 8 13:29:17 2002 +++ util_ldap_cacheh Mon Mar 4 23:54:11 2002 -102,7

RE: cvs commit: httpd-2.0/server util_filter.c

2002-03-04 Thread Ryan Bloom
rbb 02/03/04 21:21:13 Modified:server util_filterc Log: Stop the loop when we have found the correct filter, or when the filter list is over Do not stop if the next filter is NULL This fixes the infinite loop and the seg fault Sorry it took so long, the code was a