RE: cvs commit: httpd-dist/tools release.sh

2003-01-03 Thread Sander Striker
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 03, 2003 10:32 AM > striker 2003/01/03 01:32:17 > > Added: toolsrelease.sh > Log: > A new release script to make rolling releases easier. Derived from > apr-dist/tools/release.sh. > > Revision

Re: Mass Vhosting SuExec (was Re: [PATCH] remove hardcoding of suexec log location)

2003-01-03 Thread Thom May
* Colm MacCárthaigh ([EMAIL PROTECTED]) wrote : > On Wed, Jan 01, 2003 at 10:43:18PM +, Thom May wrote: > > * Aaron Bannert ([EMAIL PROTECTED]) wrote : > > > The log is generated from the suexec binary, not httpd, right? > > > Then we can't use a directive to control it and it needs to be > > >

RE: cvs commit: httpd-dist/tools release.sh

2003-01-03 Thread David McCreedy
I updated install-tpf.html in December but I don't know why this would interfere with your script. (I don't use CVS often and the document handling has always been a mystery for me.) Please let me know if I need to take any action to clear this error. -David McCreedy

Re: setsides necessary for input filters?

2003-01-03 Thread Joe Schaefer
Joe Schaefer <[EMAIL PROTECTED]> writes: > Am I allowed to assume that the incoming request buckets > are always heap-allocated, with immutable data blocks? To clarify the issue I'm asking about, here's what the source for ap_get_brigade says: /* * Read data from the next filter in the filter

auth dbm problem

2003-01-03 Thread André Malo
during the auth rewrite it happend, that the return code of the dbm_fetch will be used. this results in a 500 Response, if the user has an _empty_ user id supplied (bad key, SDBM returns APR_EINVAL, for example, but it seems, that every dbm type cooks its own return code; can't test other types

Need Help :: apache and ssl ::

2003-01-03 Thread EMRE KUNT (Ebi Bsk. - Sistem Prog)
Hello, What is the problem? Thanks and best regards, RedHat 8.0 Apache 2.0.39 openssl 0.9.7 (31 december 2002) and the result: Cannot load /Apache2/modules/mod_ssl.so into server: /Apache2/modules/mod_ssl.so: undefined symbol: X509_free

Re: Need Help :: apache and ssl ::

2003-01-03 Thread Thom May
* EMRE KUNT (Ebi Bsk. - Sistem Prog) ([EMAIL PROTECTED]) wrote : > Hello, > What is the problem? Thanks and best regards, I'd suggest you should use a more recent version of apache (2.0.43 is current) and note that 0.9.7 is brand new and we've had no reports of it working correctly. try with 2.0.43

[PATCH] squash a warning in modules/ssl/ssl_engine_log.c

2003-01-03 Thread Thom May
on the 2_0_BRANCH; /home/thom/apache2-2.0.43+cvs.1041634517/build-tree/apache2/modules/ssl/ssl_engine_log.c: In function `ssl_log_ssl_error': /home/thom/apache2-2.0.43+cvs.1041634517/build-tree/apache2/modules/ssl/ssl_engine_log.c:122: warning: assignment makes pointer from integer without a cast

RE: Need Help :: apache and ssl ::

2003-01-03 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
I'd recommend that you link the OpenSSL library statically with mod_ssl (i mean, use libssl.a and libcrypto.a).. -Madhu >-Original Message- >From: EMRE KUNT (Ebi Bsk. - Sistem Prog) [mailto:[EMAIL PROTECTED]] >Sent: Friday, January 03, 2003 4:20 AM >To: [EMAIL PROTECTED] >Subject: Need He

apache 2.x + mod_snmp

2003-01-03 Thread MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
Hi, I was recently browsing the mod_snmp site, and noticed that there has been no development of mod_snmp for Apache 2.x. (I know it's not the correct mailing list for mod_snmp questions).. I was wondering if ppl. are still using it or are there new/different methods of monitoring the webse

Re: [PATCH] squash a warning in modules/ssl/ssl_engine_log.c

2003-01-03 Thread Greg Stein
On Fri, Jan 03, 2003 at 11:52:52PM +, Thom May wrote: > on the 2_0_BRANCH; > >/home/thom/apache2-2.0.43+cvs.1041634517/build-tree/apache2/modules/ssl/ssl_engine_log.c: > In function `ssl_log_ssl_error': > >/home/thom/apache2-2.0.43+cvs.1041634517/build-tree/apache2/modules/ssl/ssl_engine_log.

Re: [PATCH] squash a warning in modules/ssl/ssl_engine_log.c

2003-01-03 Thread Thom May
* Greg Stein ([EMAIL PROTECTED]) wrote : > On Fri, Jan 03, 2003 at 11:52:52PM +, Thom May wrote: > > on the 2_0_BRANCH; > > >/home/thom/apache2-2.0.43+cvs.1041634517/build-tree/apache2/modules/ssl/ssl_engine_log.c: > In function `ssl_log_ssl_error': > > >/home/thom/apache2-2.0.43+cvs.10416345

(silly?) mod_rewrite question

2003-01-03 Thread André Malo
currently I'm looking through mod_rewrite to fix some issues (e.g. there's some confusion with url root ('/') and filesystem root (ap_os_is_path_absolute) that creates some problems on non-/-root systems [like Win32]). However, I stumbled across a piece of code, that I really don't understand

Re: setsides necessary for input filters?

2003-01-03 Thread Joe Schaefer
Joe Schaefer <[EMAIL PROTECTED]> writes: [...] > If input filters, or the content handler, are really allowed to modify > the *actual* input data, then the setaside implementation for > heap-allocated buckets needs to be changed. It is currently a noop, > but it probably should make a copy if su

Re: setsides necessary for input filters?

2003-01-03 Thread Cliff Woolley
On 4 Jan 2003, Joe Schaefer wrote: > To answer my own question :-), this line in apr_buckets.h describes the > "read" method for buckets: > apr_status_t (*read)(apr_bucket *b, const char **str, apr_size_t *len, > I interpret the const qualifier here to mean that modifications (to > the raw data)