FW: httpd.exp for Apache 2.0.43

2003-06-02 Thread Rahul Kohli
Thanks Jeff. I am facing the same type of problem mentioned by you. Originally I was running my application on Apache 1.3.26 & i was using httpd.exp. It was working fine. apachectl start started the server properly & our library was loaded. Now we are switching to apache 2.0.43 and facing error

Re: [patch] segfault in ap_internal_redirect

2003-06-02 Thread Stas Bekman
André Malo wrote: * Stas Bekman wrote: internal_internal_redirect() may return NULL, but this is not tested, causing segfault in these situations. The following patch fixes that. Notice that when NULL is returned ap_die has been already called, so no special action is required on ap_internal_redi

Re: FW: Apache socket question

2003-06-02 Thread Jeff Trawick
Ben Laurie wrote: Jeff Trawick wrote: my suggestion on apache-modules was to set c->aborted in the pre-connection hook, presumably after passing the descriptor successfully to another process ap_lingering_close() doesn't perform the shutdown() if c->aborted Icky! Presumably the nice thing to do

Re: Debugging Apache 2

2003-06-02 Thread Nedelcho Stanev
start it with -X option decho - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 02, 2003 1:20 PM Subject: Debugging Apache 2 > Hi all! > Following situation: I need to debug a bigger apache httpd 2 module... Currently I > am using Apache Httpd 2.0

Re: Debugging Apache 2

2003-06-02 Thread Jeff Trawick
[EMAIL PROTECTED] wrote: My biggest problem is to start Apache as a single process. How can I tell apache to start only one process, because I do not know how to debug a child process (or several child processes). using prefork MPM and httpd -DONE_PROCESS is the simplest debug scenario the work

RE: Debugging Apache 2

2003-06-02 Thread Steve Sabljak
Run apache with the '-X' switch. This will start it in single process mode. cheers, Steve > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Sent: Monday, June 02, 2003 12:20 PM > To: [EMAIL PROTECTED] > Subject: Debugging Apache 2 > > Hi all! > Following si

Re: [patch] segfault in ap_internal_redirect

2003-06-02 Thread André Malo
* Stas Bekman wrote: > internal_internal_redirect() may return NULL, but this is not tested, causing > segfault in these situations. The following patch fixes that. Notice that when > NULL is returned ap_die has been already called, so no special action is > required on ap_internal_redirect's part

Debugging Apache 2

2003-06-02 Thread josef.zellner
Hi all! Following situation: I need to debug a bigger apache httpd 2 module... Currently I am using Apache Httpd 2.0.44... My biggest problem is to start Apache as a single process. How can I tell apache to start only one process, because I do not know how to debug a child process (or severa

Re: httpd.exp for Apache 2.0.43

2003-06-02 Thread Jeff Trawick
Rahul Kohli wrote: Hi , Where can i find httpd.exp for Apache 2.0.43 (AIX 4.3). Install Apache then look in modules/httpd.exp in the install path; there will also be apr.exp and aprutil.exp in the lib directory. Note that the usual way to build modules on AIX with Apache 2.0 is to use run-time

[patch] segfault in ap_internal_redirect

2003-06-02 Thread Stas Bekman
got this segfault: #0 ap_process_request_internal (r=0x0) at request.c:145 #1 0x0809aa2e in ap_internal_redirect ( new_uri=0x817a958 "/error/HTTP_INTERNAL_SERVER_ERROR.html.var", r=0x846d700) at http_request.c:483 #2 0x0809a539 in ap_process_request (r=0x846d700) at http_request.c:301 #

httpd.exp for Apache 2.0.43

2003-06-02 Thread Rahul Kohli
Hi , Where can i find httpd.exp for Apache 2.0.43 (AIX 4.3). Thanks, > Rahul Kohli >

Re: cvs commit: httpd-2.0/docs/manual/vhosts details.html.endetails.html.ko.euc-kr examples.html.en examples.html.ko.euc-kr fd-limits.html.enfd-limi

2003-06-02 Thread Brian Behlendorf
On Fri, 30 May 2003, Thom May wrote: > * Andr? Malo ([EMAIL PROTECTED]) wrote : > > * Justin Erenkrantz wrote: > > > > > Even if we don't drop the generated files in the repository (which I won't > > > really comment on, other than that Java on FreeBSD isn't very stable - which > > > matters becaus

Re: 2.0 bug? trailing / redirect problem in mod_dir

2003-06-02 Thread Stas Bekman
Justin Erenkrantz wrote: --On Monday, June 2, 2003 11:23 AM +1000 Stas Bekman <[EMAIL PROTECTED]> wrote: it should honour this configuration and not ignore it, issuing a redirect, despite the existence of DocumentRoot/foo/dirname. This is how it worked in Apache-1.3 and appears to be broken in Ap

Re: 2.0 bug? trailing / redirect problem in mod_dir

2003-06-02 Thread Justin Erenkrantz
--On Monday, June 2, 2003 11:23 AM +1000 Stas Bekman <[EMAIL PROTECTED]> wrote: it should honour this configuration and not ignore it, issuing a redirect, despite the existence of DocumentRoot/foo/dirname. This is how it worked in Apache-1.3 and appears to be broken in Apache-2.0. Apache 1.3 gives

2.0 bug? trailing / redirect problem in mod_dir

2003-06-02 Thread Stas Bekman
http://httpd.apache.org/docs-2.0/mod/mod_dir.html says: A "trailing slash" redirect is issued when the server receives a request for a URL http://servername/foo/dirname where dirname is a directory. Directories require a trailing slash, so mod_dir issues a redirect to http://servername/foo/dirname

mod_rewrite: unescaping things it shouldn't.

2003-06-02 Thread Dmitri Tikhonov
I have the following setup: a request comes in to my server, and depending on what the URI looks like, I redirect the request (using RewriteRules) to another location, where more rewriting takes place, additional access checks are performed, and finally the request is proxied (again using RewriteR

New commit log mailer

2003-06-02 Thread Sander Striker
Hi, I've switched the commit log mailer to a new one just yet. Most of the time you won't notice any differences and the commit mails will look exactly the same. However, on large commits, I set the threshold to 100k FWIW, you won't get the inline diffs we are all used to, but instead you'll rec

Re: cvs commit: httpd-2.0/modules/metadata mod_expires.c

2003-06-02 Thread Jeff Trawick
[EMAIL PROTECTED] wrote: coar2003/06/01 08:10:30 Modified:.CHANGES modules/metadata mod_expires.c Index: mod_expires.c === RCS file: /home/cvs/httpd-2.0/modules/metadata/mod_expires.c,v ret

Re: Is it a subrequest, a redirect or a fast redirect?

2003-06-02 Thread André Malo
* Bill Stoddard wrote: > Would you list the PRs that you believe are related to fast redirects > not working correctly? Perhaps there are some simple changes to get > fast redirect working and perhaps there are some cases where we simply > should not be using fast redirect. Aside from the fact,

Re: cvs commit: httpd-2.0/modules/metadata mod_expires.c

2003-06-02 Thread André Malo
* [EMAIL PROTECTED] wrote: > Allow ExpiresByType to accept and understand minor-type wildcards > (e.g., text/*). They'll be used if an exact type match isn't > found; if there's no wildcard match, the expiry falls back to any > ExpiresDefault setting as usual. Hmm, that's

Bug report for Apache httpd-2.0 [2003/06/01]

2003-06-02 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

Bug report for Apache httpd-1.3 [2003/06/01]

2003-06-02 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned