Re: [PATCH] fixes segfault in mod_cache (2.0.40)

2002-08-27 Thread Kris Verbeeck
Apache behaviour with this patch (or without mod_cache): The request: GET https://whatever.html HTTP/1.0 is equivalent to: GET / HTTP/1.0 I'm wondering whether this is the desired behaviour? This is also the behaviour of a 1.3.x Apache. Maybe Apache should block this kind of

Re: mod_log_config

2002-08-27 Thread Dirk-Willem van Gulik
Yes please ! And if you could also add a nice feature to be able to switch logging on and off - that would be even nicer (i.e. rather than using clever !env= conditional logging - just be able to say that for this Vhost/Directory/File logging is 'off' (and not /dev/null or any hack)). Dw. On Sa

Re: [PATCH] fixes segfault in mod_cache (2.0.40)

2002-08-27 Thread Graham Leggett
Kris Verbeeck wrote: > Apache behaviour with this patch (or without mod_cache): > > The request: > > GET https://whatever.html HTTP/1.0 > > is equivalent to: > > GET / HTTP/1.0 > > I'm wondering whether this is the desired behaviour? This is > also the behaviour of a 1.3.x Apach

Re: authentication rewrite

2002-08-27 Thread Graham Leggett
Justin Erenkrantz wrote: > Ideally, you could use the LDAP filters that most PAM implementations > use, but definitely allow the user to tweak them. I'd like to get > mod_auth_ldap ported to this, and if we move towards a provider-based > system, I think mod_auth_ldap should be moved back into t

Re: Segmentation fault when downloading large files

2002-08-27 Thread Dirk-Willem van Gulik
This look like a filter issue I've seen before; but never could not quite reproduce. You may want to take this to [EMAIL PROTECTED]; as this is most likely related to the filters in apache; and not proxy specific. Dw. On Tue, 27 Aug 2002, Peter Van Biesen wrote: > Hello, > > I'm using an apach

[Fwd: Segmentation fault when downloading large files]

2002-08-27 Thread Peter Van Biesen
Hi, as this is probably not due to the proxy, I'm reposting this here. Can anybody help me ? Thanks ! Peter. --- Begin Message --- Hello, I'm using an apache 2.0.39 on a HPUX 11.0 system as a webserver/proxy. When I try to download large files through the proxy, I get the following error :

Re: Segmentation fault when downloading large files

2002-08-27 Thread Peter Van Biesen
However, when downloading a large file from the server itself ( not using the proxy ), works fine ... either its a problem in the proxy or a timeout somewhere ( locally is a lot faster ). Peter. Dirk-Willem van Gulik wrote: > > This look like a filter issue I've seen before; but never could not

Re: Segmentation fault when downloading large files

2002-08-27 Thread Graham Leggett
Peter Van Biesen wrote: > However, when downloading a large file from the server itself ( not > using the proxy ), works fine ... either its a problem in the proxy or a > timeout somewhere ( locally is a lot faster ). The proxy is very "dumb" code, it relies almost exclusively on the filter cod

relative log file locations in 2.0.41-dev

2002-08-27 Thread Ask Bjoern Hansen
It seems like the latest httpd from CVS doesn't prepend ServerRoot to to log paths. If I start the httpd like this, /home/perl/apache2/bin/httpd -d /home/web/front/ -k start -e debug I get an error that it can't open logs/error_log. If I chdir to /home/web/front/ I don't get an error message,

mod_cache trouble

2002-08-27 Thread Ask Bjoern Hansen
I am using the latest httpd from CVS. I can't get mod_disk_cache to cache anything but 301's. I suspect it's something related to the headers I (don't) send. $ lwp-request -e -d -S http://nntp.x.perl.org/ GET http://nntp.x.perl.org/ --> 200 OK Connection: close Date: Tue, 27 Aug 2002 11:34:58

CacheOn directive

2002-08-27 Thread Ask Bjoern Hansen
"CacheOn on" sounds pretty silly. Wouldn't it be better if it was "CacheOn yes" or just "Cache on"? :-) - ask -- ask bjoern hansen, http://www.askbjoernhansen.com/ !try; do();

mod_log_config changes break httpd?

2002-08-27 Thread Jeff Trawick
Apache won't initialize... look at the name passed when opening/creating the file: open("logs/access_log", O_WRONLY|O_APPEND|O_CREAT, 0666) = -1 ENOENT (No such file or directory) gettimeofday({1030448472, 125843}, NULL) = 0 write(2, "[Tue Aug 27 11:41:12 2002] [erro"..., 115) = 115 _exit(1) -

Re: CacheOn directive

2002-08-27 Thread Graham Leggett
Ask Bjoern Hansen wrote: > "CacheOn on" sounds pretty silly. Wouldn't it be better if it was > "CacheOn yes" or just "Cache on"? :-) Or another question: What does CacheOn do that CacheEnable doesn't already do? Regards, Graham -- - [EMAIL PROTECTED]

Re: authentication rewrite

2002-08-27 Thread Dirk-Willem van Gulik
On Mon, 26 Aug 2002, Justin Erenkrantz wrote: > I need to be able to get at the authentication backends to implement > some DAV enhancements - namely DAV has its own authentication model > (DAV ACL support). My idea would be to allow mod_dav to reuse the > aaa backends and just implement the c

Re: Segmentation fault when downloading large files

2002-08-27 Thread Cliff Woolley
On Tue, 27 Aug 2002, Graham Leggett wrote: > The filter code behaves differently depending on where the data is > coming from, eg an area in memory, or a file on a disk. As a result it > is quite possible that a large file from disk works and a large file > from proxy does not. APR's concept of

Re: Segmentation fault when downloading large files

2002-08-27 Thread Peter Van Biesen
What should I call it then ? not-so-tiny-files ? 8-) Cliff Woolley wrote: > > On Tue, 27 Aug 2002, Graham Leggett wrote: > > > The filter code behaves differently depending on where the data is > > coming from, eg an area in memory, or a file on a disk. As a result it > > is quite possible that

Re: CacheOn directive

2002-08-27 Thread Paul J. Reder
In fact, the CacheOn directive simply sets a variable in the mod_cache data structure which is never checked. Is there any reason to keep this directive or can I go ahead and remove CacheOn and the code that sets and merges it (for no good reason)? Graham Leggett wrote: > Ask Bjoern Hansen wrot

Re: mod_cache trouble

2002-08-27 Thread Paul J. Reder
Are you using the most recent head build of 2.0? There was a fix applied recently to the header handling for mod_disk_cache. I am currently doing some work on the caching code, so I'll look into this. Please let me know if you are on the latest code. Thanks, Paul J. Reder Ask Bjoern Hansen wro

Re: CacheOn directive

2002-08-27 Thread Jim Jagielski
I kinda like it... reminds me of the Human Torch: Flame On! :) Ask Bjoern Hansen wrote: > > > "CacheOn on" sounds pretty silly. Wouldn't it be better if it was > "CacheOn yes" or just "Cache on"? :-) > > > - ask > > -- > ask bjoern hansen, http://www.askbjoernhansen.com/ !try; do(); >

Re: mod_cache trouble

2002-08-27 Thread Ask Bjoern Hansen
On Tue, 27 Aug 2002, Paul J. Reder wrote: > Are you using the most recent head build of 2.0? There was a > fix applied recently to the header handling for mod_disk_cache. > > I am currently doing some work on the caching code, so I'll > look into this. Please let me know if you are on the latest

Re: mod_cache trouble

2002-08-27 Thread Paul J. Reder
Will do. Ask Bjoern Hansen wrote: > On Tue, 27 Aug 2002, Paul J. Reder wrote: > > >>Are you using the most recent head build of 2.0? There was a >>fix applied recently to the header handling for mod_disk_cache. >> >>I am currently doing some work on the caching code, so I'll >>look into this.

Re: Segmentation fault when downloading large files

2002-08-27 Thread Cliff Woolley
On Tue, 27 Aug 2002, Peter Van Biesen wrote: > > APR's concept of a "large file" (which is the concept used by file > > buckets, btw) is >2GB. > > What should I call it then ? not-so-tiny-files ? 8-) hehehe I was just pointing out that < 70MB vs. > 70MB shouldn't make any difference as far as A

Re: CacheOn directive

2002-08-27 Thread Paul J. Reder
Taking those sentiments into account ;), if there are no *other* reasons to keep CacheOn (since it does nothing) I will be committing a fix this afternoon that removes it. Jim Jagielski wrote: > I kinda like it... reminds me of the Human Torch: Flame On! :) > > Ask Bjoern Hansen wrote: > >> >>

Re: authentication rewrite

2002-08-27 Thread john
Hi Justin - >-- Original Message -- >Reply-To: [EMAIL PROTECTED] >Date: Mon, 26 Aug 2002 23:44:32 -0700 >From: Justin Erenkrantz <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: authentication rewrite > >My point is that I need to add another front end authentication >module (namely withi

Re: authentication rewrite

2002-08-27 Thread Brad Nicholes
+1 Brad Nicholes Senior Software Engineer Novell, Inc., the leading provider of Net business solutions http://www.novell.com >>> [EMAIL PROTECTED] Tuesday, August 27, 2002 4:20:43 AM >>> Justin Erenkrantz wrote: > Ideally, you could use the LDAP filters that most PAM implementations > use, but

Re: authentication rewrite

2002-08-27 Thread john
Hi - Shouldn't a new thread be spawned for an(other) ldap vote (its deja vu all over again :) sterling >-- Original Message -- >Reply-To: [EMAIL PROTECTED] >Date: Tue, 27 Aug 2002 08:20:05 -0600 >From: "Brad Nicholes" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> >Subject: Re

[PROPOSAL] Move AUTH_LDAP to /experimental (was:authentication rewrite)

2002-08-27 Thread Brad Nicholes
Now that 2.0.40 has been released and we are in development of .41 and the fact that there has been a proposal for re-architecting the AUTH modules, I would like to propose that we move AUTH_LDAP out of it's own project and into experimental. This will enable AUTH_LDAP to get more exposure as

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authenticationrewrite)

2002-08-27 Thread rbb
I am very much against putting more modules into the standard server. Ryan On Tue, 27 Aug 2002, Brad Nicholes wrote: >Now that 2.0.40 has been released and we are in development of .41 > and the fact that there has been a proposal for re-architecting the AUTH > modules, I would like to pro

Re: relative log file locations in 2.0.41-dev

2002-08-27 Thread Ian Holsman
Ask Bjoern Hansen wrote: > It seems like the latest httpd from CVS doesn't prepend ServerRoot > to to log paths. If I start the httpd like this, > > /home/perl/apache2/bin/httpd -d /home/web/front/ -k start -e debug > > I get an error that it can't open logs/error_log. > > If I chdir to /home/

Re: Segmentation fault when downloading large files

2002-08-27 Thread William A. Rowe, Jr.
At 07:53 AM 8/27/2002, Peter Van Biesen wrote: >What should I call it then ? not-so-tiny-files ? 8-) Nah... large or big files is just fine :-) I'm guessing $$$s to OOOs [donuts] that your client is starting some byteranges somewhere along the way. Try adding the bit \"%{Range}i\" in one of yo

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authenticationrewrite)

2002-08-27 Thread Graham Leggett
[EMAIL PROTECTED] wrote: > I am very much against putting more modules into the standard server. I think such a decision should be based on whether it is desirable for core Apache to offer certain features, not whether there are many or few modules in the core. Remember that putting more modu

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authentication rewrite)

2002-08-27 Thread Justin Erenkrantz
On Tue, Aug 27, 2002 at 09:27:16AM -0600, Brad Nicholes wrote: > modules, I would like to propose that we move AUTH_LDAP out of it's own > project and into experimental. This will enable AUTH_LDAP to get more +1. Especially if the auth rewrite occurs, auth_ldap would become much simpler. --

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authenticationrewrite)

2002-08-27 Thread Joshua Slive
Graham Leggett wrote: > [EMAIL PROTECTED] wrote: > >> I am very much against putting more modules into the standard server. > > > I think such a decision should be based on whether it is desirable for > core Apache to offer certain features, not whether there are many or few > modules in the

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authentication rewrite)

2002-08-27 Thread Aaron Bannert
On Tue, Aug 27, 2002 at 12:44:35PM -0400, Joshua Slive wrote: > I would be happier with a good system for integrating non-core modules, > such as an apache-rollup or a CPAN/freebsd ports like system. BUT, since > nobody seems willing to step-up and create such a system, I think it > would be a

Re: authentication rewrite

2002-08-27 Thread Justin Erenkrantz
On Tue, Aug 27, 2002 at 10:12:43AM -0400, [EMAIL PROTECTED] wrote: > than the current AAA modules. In a 'require group' world, it is very nice > to abstract this stuff out so backends can be re-used, and apache specific > logic can be centralized - as you have proposed. But it will be harder > t

Re: El-Kabong -- HTML Parser

2002-08-27 Thread daniel
A couple of notes on the parser: - It is pretty lightweight and self contained - This HTML parser can be used for a multitude of applications, in Apache 2.0 filter modules. The filter processes content generated by Apache or proxied content and can rewrite URLs embedded in HTML pages: a) URL rew

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authenticationrewrite)

2002-08-27 Thread Graham Leggett
Aaron Bannert wrote: > I would *love* to see this happen. I think a decoupling of modules > from the core httpd server would give us many benefits: True, but keeping functionality out of the server until such a system exists is a mistake. Any CPAN style system should not hold up development of

Apache httpd-ldap module issue

2002-08-27 Thread Jess M. Holle
The Apache 2 modules in the httpd-ldap sub-project (which should be moved into 'experimental' in my opinion and have standard MSVC++ projects created, etc -- though I have no vote) crash on Windows 2000 in Apache 2.0.40.  [Yes, I'll file a bug as appropriate.] The issue is use of uninitialized

Re: El-Kabong -- HTML Parser

2002-08-27 Thread Jon Travis
On Tue, Aug 27, 2002 at 09:47:58AM -0700, daniel wrote: > > A couple of notes on the parser: > - It is pretty lightweight and self contained > - This HTML parser can be used for a multitude of applications, in Apache > 2.0 filter modules. The filter processes content generated by Apache or proxie

Apache httpd-ldap modules on AIX?

2002-08-27 Thread Jess M. Holle
Has anyone gotten the Apache httpd-ldap sub-project modules to load into Apache 2.0 on AIX? I've gotten them to build just fine (and gotten them to run just fine on Windows [after a patch] and Solaris), but I Apache (2.0.40) fails to load mod_ldap.so on AIX. I'm only getting the "Syntax error

Re: El-Kabong -- HTML Parser

2002-08-27 Thread Jon Travis
Well, if people are agreeing to this, can we get someone involved in the HTTPD project (non-Covalent affiliated) to review and approve/decline? Volunteers? -- Jon On Tue, Aug 27, 2002 at 01:22:03PM -0400, Jim Jagielski wrote: > I didn't mean in the same tree at all! :) > > But, as you said, a

Re: El-Kabong -- HTML Parser

2002-08-27 Thread Joshua Slive
Jon Travis wrote: > Well, if people are agreeing to this, can we get someone involved > in the HTTPD project (non-Covalent affiliated) to review and > approve/decline? Volunteers? > I can't publicly post the source under the ASF license until it has been > accepted (which is a chicken & egg i

Re: authentication rewrite

2002-08-27 Thread Dirk-Willem van Gulik
> Yeah, you hit the problem with stacking - authoritative. I'm not > sure how useful having multiple backends could be. I'd almost > suggest that something like a PAM backend would be much better and > allows a fairly standard configuration. (I know Dirk has a PAM It is integrated into the PA

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authentication rewrite)

2002-08-27 Thread Ian Holsman
Graham Leggett wrote: > Aaron Bannert wrote: > >> I would *love* to see this happen. I think a decoupling of modules >> from the core httpd server would give us many benefits: > > > True, but keeping functionality out of the server until such a system > exists is a mistake. Any CPAN style syst

Re: relative log file locations in 2.0.41-dev

2002-08-27 Thread Ian Holsman
Ask Bjoern Hansen wrote: > It seems like the latest httpd from CVS doesn't prepend ServerRoot > to to log paths. If I start the httpd like this, > > /home/perl/apache2/bin/httpd -d /home/web/front/ -k start -e debug > > I get an error that it can't open logs/error_log. > > If I chdir to /home/

Re: El-Kabong -- HTML Parser

2002-08-27 Thread Dirk-Willem van Gulik
> I can't publicly post the source under the ASF license until it has been > accepted (which is a chicken & egg issue). I can, however, distribute > to individuals on a restricted basis for evaluation for acceptance. There is little (except for a few upset board members) stopping Covalent of po

RE: relative log file locations in 2.0.41-dev

2002-08-27 Thread Allan
> can you check the latest CVS version now and see if it fixes your problem? Fixes the startup failure I was seeing earlier this a.m. on Win32. Allan

adding options to apachectl

2002-08-27 Thread Dave Hill
Hi all, I would like to propose a change to apachectl (for 2.0 although work with 1.3 as well) I like using toggles in the default httpd.conf files I provide to customers (for things like Tomcat connectors, PHP...), The problem with the toggles is getting them on the command line. With

Is anybody getting CVS commit messages?

2002-08-27 Thread rbb
I realized earlier today that I haven't been seeing commit messages. Is anybody getting these messages? Ryan -- ___ Ryan Bloom [EMAIL PROTECTED] 550 Jean St Oakland CA 94610 -

Re: Is anybody getting CVS commit messages?

2002-08-27 Thread Rasmus Lerdorf
I see them On Tue, 27 Aug 2002 [EMAIL PROTECTED] wrote: > > I realized earlier today that I haven't been seeing commit messages. > > Is anybody getting these messages? > > Ryan > > -- > > ___ > Ryan Bloom

Re: adding options to apachectl

2002-08-27 Thread Aaron Bannert
On Tue, Aug 27, 2002 at 02:15:16PM -0400, Dave Hill wrote: > I would like to propose a change to apachectl (for 2.0 although > work with 1.3 as well) > > I like using toggles in the default httpd.conf files > I provide to customers (for things like Tomcat connectors, PHP...), > The problem

Re: authentication rewrite

2002-08-27 Thread Greg Stein
a big +1... On Mon, Aug 26, 2002 at 11:44:32PM -0700, Justin Erenkrantz wrote: >... > My point is that I need to add another front end authentication > module (namely within mod_dav). I think it'd be pointless to > duplicate all of the backend work done in mod_auth* so that > mod_dav can authent

Re: authentication rewrite

2002-08-27 Thread john
Hi - >-- Original Message -- >Reply-To: [EMAIL PROTECTED] >Date: Tue, 27 Aug 2002 09:51:09 -0700 >From: Justin Erenkrantz <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: Re: authentication rewrite > > >On Tue, Aug 27, 2002 at 10:12:43AM -0400, [EMAIL PROTECTED] wrote: >Without seeing use cas

Re: El-Kabong -- HTML Parser

2002-08-27 Thread Greg Stein
fyi, I've already emailed Jon about doing a review. I would recommend that at least one other review it, too. On Tue, Aug 27, 2002 at 10:28:18AM -0700, Jon Travis wrote: > Well, if people are agreeing to this, can we get someone involved > in the HTTPD project (non-Covalent affiliated) to review

Re: more on the charter (was: El-Kabong -- HTML Parser)

2002-08-27 Thread Jim Jagielski
At 12:43 PM -0700 8/27/02, Greg Stein wrote: > >> > APR is whatever we want it to be. If we start building things on > >You bet! Well, it depends on how far you want to take the statement "whatever we want it to be" :) *duck* > > > top of APR that are functionally distinct from other projects u

Apache 1.3.x and 2.0.x Performance Issue

2002-08-27 Thread Jess M. Holle
Both Apache 1.3.x and 2.0.x suffer a severe perfomance issue when the server is on Windows and the client is Solaris (and perhaps others). Before you stop reading this as simply "we know Windows does not perform well", I should point out that this does not occur when the client is Windows or L

Re: Apache 1.3.x and 2.0.x Performance Issue

2002-08-27 Thread Ian Holsman
Jess M. Holle wrote: > Both Apache 1.3.x and 2.0.x suffer a severe perfomance issue when the > server is on Windows and the client is Solaris (and perhaps others). > > Before you stop reading this as simply "we know Windows does not perform > well", I should point out that this does not occur w

Re: more on the charter (was: El-Kabong -- HTML Parser)

2002-08-27 Thread john
Hi - >-- Original Message -- >Reply-To: [EMAIL PROTECTED] >Date: Tue, 27 Aug 2002 16:14:20 -0400 >To: [EMAIL PROTECTED] >From: Jim Jagielski <[EMAIL PROTECTED]> >Subject: Re: more on the charter (was: El-Kabong -- HTML Parser) >Cc: [EMAIL PROTECTED] > >Would it destroy APR to fold e-k into it...

Re: more on the charter (was: El-Kabong -- HTML Parser)

2002-08-27 Thread Greg Stein
On Tue, Aug 27, 2002 at 04:14:20PM -0400, Jim Jagielski wrote: > At 12:43 PM -0700 8/27/02, Greg Stein wrote: > > > >> > APR is whatever we want it to be. If we start building things on > > > >You bet! > > Well, it depends on how far you want to take the statement "whatever > we want it to be" :)

Re: Apache 1.3.x and 2.0.x Performance Issue

2002-08-27 Thread Jess M. Holle
Ian Holsman wrote: Jess M. Holle wrote: Both Apache 1.3.x and 2.0.x suffer a severe perfomance issue when the server is on Windows and the client is Solaris (and perhaps others). Before you stop reading this as simply "we know Windows does not perform well", I should point out that this

RE: Apache 1.3.x and 2.0.x Performance Issue

2002-08-27 Thread Clay Webster
Jess, Were IIS and Tomcat on the same windows hardware as the Apache httpds? Are you seeing network issues (e.g.- rexmits) -- you might have them everywhere, but your Solaris may not be configured well (ndd,MTU,etc). --cw -Original Message- From: Jess M. Holle [mailto:[EMAIL PROTE

Re: Apache 1.3.x and 2.0.x Performance Issue

2002-08-27 Thread Jess M. Holle
I can check into this (as I said another engineer ran the tests), but these servers were on the same network segments. Also, our customers are seeing roughly the same numbers (at least for Apache 1.3 -- they're not up to 2.0 yet). -- Jess Holle Clay Webster wrote: >Jess, > >Were IIS and Tom

Re: more on the charter (was: El-Kabong -- HTML Parser)

2002-08-27 Thread Jim Jagielski
Greg Stein wrote: > > > > Regarding specifically e-k, as a html parser, it's > > got more a family tie, IMO, to the HTTP server project, than APR. > > I think it fits in better among libapreq than in the APR world, > > mostly because it's focused towards the web server and web server > > functio

Apache httpd-ldap module vs. AIX

2002-08-27 Thread Jess M. Holle
Has anyone gotten the Apache 2 httpd-ldap sub-project modules to *work* (not just build) on AIX? I tried with Apache 2.0.40 and the mod_ldap.so still won't load and it won't tell me why not [Overall, Apache 2 is a bear on AIX -- given gcc symbol shuffling exercises and libtool issues.] -

Re: authentication rewrite

2002-08-27 Thread Justin Erenkrantz
On Tue, Aug 27, 2002 at 02:43:24PM -0400, [EMAIL PROTECTED] wrote: > I could send a patch to your current code if that would be clearer - its > really pretty simple, but would allow the backends to get at least a little > more powerful (and would solve the ldap_prop case i illustrated above Defin

Re: authentication rewrite

2002-08-27 Thread Greg Stein
On Tue, Aug 27, 2002 at 03:27:10PM -0700, Justin Erenkrantz wrote: > On Tue, Aug 27, 2002 at 02:43:24PM -0400, [EMAIL PROTECTED] wrote: > > I could send a patch to your current code if that would be clearer - its > > really pretty simple, but would allow the backends to get at least a little > > m

Re: authentication rewrite

2002-08-27 Thread Justin Erenkrantz
On Tue, Aug 27, 2002 at 05:03:11PM -0700, Greg Stein wrote: > Put it in there, then :-) > > I haven't really seen any objects so far. And hey... this *is* version > control. It can always be backed out :-) I don't want to add it in and then have to back it out because people didn't realize that

Re: authentication rewrite

2002-08-27 Thread Greg Stein
On Tue, Aug 27, 2002 at 05:02:19PM -0700, Justin Erenkrantz wrote: > On Tue, Aug 27, 2002 at 05:03:11PM -0700, Greg Stein wrote: > > Put it in there, then :-) > > > > I haven't really seen any objects so far. And hey... this *is* version > > control. It can always be backed out :-) > > I don't w

segfault when r->filename is NULL

2002-08-27 Thread Stas Bekman
In apache-1.3 it was possible to shortcut the translation handler, by returning OK right away, thus saving several stat() syscalls when you knew that your handler is virtual and doesn't need to run the uri->filename translation. In httpd-2.0 this doesn't work anymore. mod_mime's find_ct() segfaul

Re: [PROPOSAL] Move AUTH_LDAP to /experimental (was: authentication rewrite)

2002-08-27 Thread Peter Van Biesen
I'd like to second that ! Peter. Brad Nicholes wrote: > >Now that 2.0.40 has been released and we are in development of .41 > and the fact that there has been a proposal for re-architecting the AUTH > modules, I would like to propose that we move AUTH_LDAP out of it's own > project and into