[STATUS] (flood) Wed Dec 11 23:46:08 EST 2002

2002-12-12 Thread Rodent of Unusual Size
flood STATUS: -*-text-*- Last modified at [$Date: 2002/09/06 10:24:42 $] Release: 1.0: Released July 23, 2002 milestone-03: Tagged January 16, 2002 ASF-transfer: Released July 17, 2001 milestone-02: Tagged August 13,

RE: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
same on HP-UX also.. This is how it looks : /* Cross process serialization techniques */ /* #undef USE_FLOCK_SERIALIZE */ #define USE_SYSVSEM_SERIALIZE 1 /* #undef USE_FCNTL_SERIALIZE */ /* #undef USE_PROC_PTHREAD_SERIALIZE */ /* #undef USE_PTHREAD_SERIALIZE */ /* #undef POSIXSEM_IS_GLOBAL */ /*

Re: [PATCH] Use mutex locks in mod_specweb99.c

2002-12-12 Thread Greg Ames
MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1) wrote: same on HP-UX also.. This is how it looks : /* Cross process serialization techniques */ /* #undef USE_FLOCK_SERIALIZE */ #define USE_SYSVSEM_SERIALIZE 1 /* #undef USE_FCNTL_SERIALIZE */ /* #undef USE_PROC_PTHREAD_SERIALIZE */ /* #undef

Re: SSL upgrade [was: Final patch for a long time]

2002-12-12 Thread Joe Orton
On Thu, Dec 12, 2002 at 01:08:08AM -0600, William Rowe wrote: My proposed solution is to review the patch and apply it to cvs HEAD. Get it committed. Of course there are no test suites right now, and there won't be for a little while yet. But once the code exists, it will be simpler to keep

Re: request for comments: multiple-connections-per-thread MPM design

2002-12-12 Thread Manoj Kasichainula
Took too long to respond. Oh well, no one else did either... On Tue, Nov 26, 2002 at 01:14:10AM -0500, Glenn wrote: On Mon, Nov 25, 2002 at 08:36:59PM -0800, Manoj Kasichainula wrote: BTW, ISTR Ryan commenting a while back that cross-thread signalling isn't reliable, and it scares me in

Support for ASP

2002-12-12 Thread Karma Dorji
Can anyone help me, how to support ASP, in apache server, running in Linux 7.2 box, my apache is 2.0, i need to support ASP for one of the customer, hosting in my sever, your help will be highly appreciated. Thanks. Karma.

Re: cvs commit: httpd-2.0/server Makefile.in

2002-12-12 Thread Ben Laurie
[EMAIL PROTECTED] wrote: jerenkrantz2002/12/11 13:09:16 Modified:server Makefile.in Log: Take a stab at fixing the brokenness in our tree (grr!). ls -1 is bound to be more portable than find -maxdepth, but I suspect it may not be as portable as it really should. man ls

mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Bill Stoddard
The CacheMaxStreamingBuffer function is currently implemented in mod_cache. It carves out a chunk of RAM to buffer responses, regardless of the actual storage manager (mod_mem_cache or mod_disk_cache) that will ultimately be used cache the response. The function is not really useful if you are

Re: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Estrade Matthieu
I confirm the CacheMaxStreamingBuffer is a source of misconfiguration Using the MCacheMaxObjectSize could me a good thing. In case of CacheMaxStreamingBuffer used, i don't know how MCacheMaxObjectSize is used for because if a document is bigger than MaxStreamingBuffer, it will be never cached.

RE: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Bill Stoddard
I confirm the CacheMaxStreamingBuffer is a source of misconfiguration Using the MCacheMaxObjectSize could me a good thing. In case of CacheMaxStreamingBuffer used, i don't know how MCacheMaxObjectSize is used for because if a document is bigger than MaxStreamingBuffer, it will be never

Re: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Brian Pane
On Thu, 2002-12-12 at 07:53, Bill Stoddard wrote: The CacheMaxStreamingBuffer function is currently implemented in mod_cache. It carves out a chunk of RAM to buffer responses, regardless of the actual storage manager (mod_mem_cache or mod_disk_cache) that will ultimately be used cache the

RE: Webdav

2002-12-12 Thread Bennett, Tony - CNF
You don't have to run Apache 2.0 as root in order to provide webdav capability... ...If you are running as user 'nobody', just ensure that the directory tree that is dav enabled is owned by user 'nobody'. -tony -Original Message- From: Martin Ouimet [mailto:[EMAIL PROTECTED]] Sent:

Re: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Estrade Matthieu
what i remember is cache is able to cache unknown size document with MaxStreamingBuffer. i will try to draw it: first brigade, no length, if no EOS bucket, saving data in temp brigade second brigade, if no EOS, concat data to temp_brigade until finding an EOS bucket, or total length is more

Suppressing Authentication Dialog box

2002-12-12 Thread Laxmikanth M.S.
Hi, PLEASE REPLT TO LAXMIKANTH.MS@SONATA_SOFTWARECOM I have setup a site with Basic Autentication... I want to suppress the dialog box I have the password and username with meis there anyway to pass these values directly from my page instead thro' the popup box. thanks in advacne Laxmikanth

Re: [PATCH-3] Allowing extended characters in LDAP authentication...

2002-12-12 Thread Astrid Kessler
This patch eliminates the hardcoded charset table. Instead it reads the charset table from a conf file. The directive AuthLDAPCharsetConfig allows the admin to specify the charset conf file. Is there also a need to specify additional conversions directly in the httpd.conf

RE: Suppressing Authentication Dialog box

2002-12-12 Thread John K. Sterling
Not using basic authentication. basic auth IS the browser dialogue based authentication. you will need to write your own auth module to accept the username and password from the vars. sterling -- Original Message -- Reply-To: [EMAIL PROTECTED] From: Laxmikanth M.S. [EMAIL PROTECTED] To: [EMAIL

RE: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Bill Stoddard
When I added CacheMaxStreamingBuffer originally, I had two reasons for making it a separate directive: 1. As a separate directive, it could be disabled by default to guarantee that the new functionality wouldn't break anyone's existing mod_cache setup. [I'm no longer

RE: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Bill Stoddard
I expect mod_cache/mod_mem_cache is close to moving out of experimental. I have no confidence in mod_disk_cache (mainly because I have not spent much time on it in months). None of the changes I am proposing would substantially impact the stability (famous last words :-). Bill

RE: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Brian Pane
On Thu, 2002-12-12 at 09:40, Bill Stoddard wrote: I suppose we could eliminate my second concern by simply adding a note to the documentation that says, don't use ridiculously large values for MCacheMaxObjectSize. What do you think? Documenting the issue might be sufficient. If we do

RE: mod_cache CacheMaxStreamingBuffer

2002-12-12 Thread Bill Stoddard
On Thu, 2002-12-12 at 09:40, Bill Stoddard wrote: I suppose we could eliminate my second concern by simply adding a note to the documentation that says, don't use ridiculously large values for MCacheMaxObjectSize. What do you think? Documenting the issue might be sufficient.

Re: mod_usertrack patch

2002-12-12 Thread Jim Jagielski
Unless anyone has gas on this, I'm +1 and will be committing in the next 24-48 hours. At 9:16 AM -0500 12/6/02, Andrei Zmievski wrote: Jim, Resubmitting the patch, as you requested. -- Andrei Zmievski Mail: [EMAIL PROTECTED] Sr. Front End Software Engineer Web:

Re: request for comments: multiple-connections-per-thread MPM design

2002-12-12 Thread Glenn
On Thu, Dec 12, 2002 at 12:39:17AM -0800, Manoj Kasichainula wrote: ... Add a descriptor (pipe, socket, whatever) to the pollset and use it to indicate the need to generate a new pollset. The thread that sends info down this descriptor could be programmed to wait a short amount of time

Re: [PATCH-3] Allowing extended characters in LDAPauthentication...

2002-12-12 Thread Brad Nicholes
The charset conversion that is happening in LDAP is actually quite specialized. The general functionality of converting from one charset to another already exists in APR in the form of apr_xlat_xxx(). LDAP is only interested in converting the user ID from a given charset to UTF-8. Up

Re: [PATCH-3] Allowing extended characters in LDAPauthentication...

2002-12-12 Thread Brad Nicholes
The charset conversion that is happening in LDAP is actually quite specialized. The general functionality of converting from one charset to another already exists in APR in the form of apr_xlat_xxx(). LDAP is only interested in converting the user ID from a given charset to UTF-8. Up until

Re: Suppressing Authentication Dialog box

2002-12-12 Thread Glenn
-- Original Message -- Reply-To: [EMAIL PROTECTED] From: Laxmikanth M.S. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Suppressing Authentication Dialog box Date: Thu, 12 Dec 2002 16:11:28 +0530 Hi, PLEASE REPLT TO LAXMIKANTH.MS@SONATA_SOFTWARECOM I have setup a site with Basic

Re: cvs commit: httpd-2.0/server request.c

2002-12-12 Thread Paul J. Reder
[EMAIL PROTECTED] wrote: wrowe 2002/12/11 23:05:54 Modified:server request.c Log: Make the code simpler to follow, and perhaps clear up the follow-symlink bug reports we have seen on bugzilla. e.g. 14206 etc. Revision ChangesPath 1.122 +23 -43

RE: Webdav

2002-12-12 Thread Martin Ouimet
this is impossible because im sharing all my user's home directory via webdav. -Original Message- From: Bennett, Tony - CNF [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 11:48 AM To: '[EMAIL PROTECTED]' Subject: RE: Webdav You don't have to run Apache 2.0 as root in

compiling mod_auth_digest fails

2002-12-12 Thread Günter Knauf
Hi, just tried to compile snapshot apache-1.3_20021212111200.tar.gz for Win32 platform, but compilation breaks in mod_auth_digest.c line 378 with 'unexpected #endif'. After removing line 378 it compiles. Guenter.

Re: [PATCH-3] Allowing extended characters in LDAP authentication...

2002-12-12 Thread Astrid Kessler
The charset conversion that is happening in LDAP is actually quite specialized. The general functionality of converting from one charset to another already exists in APR in the form of apr_xlat_xxx(). LDAP is only interested in converting the user ID from a given charset to UTF-8. Up

RE: Webdav

2002-12-12 Thread Bennett, Tony - CNF
Notice: I have cross-posted this into the dav-dev list where it more aptly belongs. mod_dav was designed assuming it owns all resources in its repository... whether that repository is a file-system (like the out-of-the-box version of mod_dav mod_dav_fs), or whether that repository is

Re: [PATCH-3] Allowing extended characters in LDAPauthentication...

2002-12-12 Thread Brad Nicholes
You are absolutely right, there are other modules that need to do header conversion. In a previous email, Bill Rowe pointed out that WebDAV also suffers from charset mismatch, but in a different way than auth_ldap. WebDAV needs the URI converted as well as other header entries in order to

Re: [PATCH-3] Allowing extended characters in LDAPauthentication...

2002-12-12 Thread Brad Nicholes
You are absolutely right, there are other modules that need to do header conversion. In a previous email, Bill Rowe pointed out that WebDAV also suffers from charset mismatch, but in a different way than auth_ldap. WebDAV needs the URI converted as well as other header entries in order to

Re: [PATCH-3] Allowing extended characters in LDAP authentication...

2002-12-12 Thread Astrid Kessler
Brad Nicholes [EMAIL PROTECTED] wrote in news:sdf8b26d.020@prv- mail25.provo.novell.com: In order to solve WebDAV's problem, the scope of this discussion needs to be much broader. Any ideas?? Hm, not really. :/ This should be done by someone with more experience to the code. Kess

Re: Support for ASP

2002-12-12 Thread Sabyasachi Chakrabarty
I don't know wheter this is the correct forum for this. However, there some solutions available like Chiliasp from Chilisoft. There is also an open source project called apache-asp. Hope this helps. Sachi On Thu, 12 Dec 2002, Karma Dorji wrote: BlankCan anyone help me, how to support ASP, in