... Ideally, this should apply to *all* Apache modules. Historically, these practices were never recorded, nor emboded in general practice. Thus, mod_dav fell...
... Hmm, that's the reason I suggested to use (at least internally) the AddOutputFilterByType API. IMHO such functionality would be better there as a general...
... referenced type of the pointer value "mime" is const, but the referenced type of the target of this assignment is not. (notconstqual) ... if I had time to...
Jeff Trawick
trawick@...
Jun 1, 2003 6:06 pm
44467
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...
Sander Striker
striker@...
Jun 1, 2003 8:17 pm
44468
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...
Dmitri Tikhonov
dmitri@...
Jun 1, 2003 11:05 pm
44469
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...
Stas Bekman
stas@...
Jun 2, 2003 1:23 am
44470
... Apache 1.3 gives precedent to directories over locations. I'm not clear how you reached that conclusion, but I just tested it on 1.3 (and 2.0), and in the...
Justin Erenkrantz
justin@...
Jun 2, 2003 3:07 am
44471
... I did some more digging and tracing and the problem seems to be as follows: in apache 1.3 mod_dir was a running as a response handler, allowing other ...
Stas Bekman
stas@...
Jun 2, 2003 6:06 am
44472
... On daedalus, the native JDK 1.3.1p7 as well as the blackdown 1.4.1 jdk are both installed. Look in /usr/local. On icarus, we have both the native 1.3.1p8...
Brian Behlendorf
brian@...
Jun 2, 2003 7:00 am
44473
Hi , Where can i find httpd.exp for Apache 2.0.43 (AIX 4.3). Thanks,...
Rahul Kohli
rahul_kohli@...
Jun 2, 2003 10:14 am
44474
got this segfault: #0 ap_process_request_internal (r=0x0) at request.c:145 #1 0x0809aa2e in ap_internal_redirect ( new_uri=0x817a958...
Stas Bekman
stas@...
Jun 2, 2003 10:30 am
44475
... 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...
Jeff Trawick
trawick@...
Jun 2, 2003 10:46 am
44476
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...
josef.zellner@...
Jun 2, 2003 11:20 am
44477
... Yep, it was already fixed in 2.1 in conclusion with the LimitInternalRecursion patch (hey folks, please review for backport!). ... This patch is not...
Run apache with the '-X' switch. This will start it in single process mode. cheers, Steve ... BBCi at http://www.bbc.co.uk/ This e-mail (and any attachments)...
Steve Sabljak
steve.sabljak@...
Jun 2, 2003 11:26 am
44479
... using prefork MPM and httpd -DONE_PROCESS is the simplest debug scenario the worker MPM supports -DONE_PROCESS but you still have multiple threads to...
Jeff Trawick
trawick@...
Jun 2, 2003 11:28 am
44480
start it with -X option decho ... From: <josef.zellner@...> To: <dev@...> Sent: Monday, June 02, 2003 1:20 PM Subject: Debugging Apache 2 ...
Nedelcho Stanev
nedelcho.stanev@...
Jun 2, 2003 11:29 am
44481
... unclear to me whether or not skipping shutdown() is intrinsically linked to c->aborted... I wouldn't be surprised if it is... some digging into ancient...
Jeff Trawick
trawick@...
Jun 2, 2003 11:33 am
44482
... ok, so I won't worry about this issue then. Thanks André. ... -- __________________________________________________________________ Stas Bekman...
Stas Bekman
stas@...
Jun 2, 2003 11:48 am
44483
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...
Rahul Kohli
rahul_kohli@...
Jun 2, 2003 1:39 pm
44484
Stas, when is PerlTransHandler evaluated? Not until the run_handlers() phase? Perhaps the simplest is to set the response ->handler to application/x-perl or...
William A. Rowe, Jr.
wrowe@...
Jun 2, 2003 2:02 pm
44485
... apxs uses apr-config. Check out the LDFLAGS in apr-config, in particular the -brtl option. Your best bet is to use apxs to compile your modules. That way,...
Bill Stoddard
bill@...
Jun 2, 2003 2:02 pm
44486
... I assume you have ported your application to Apache 2 API? You can get the same symptom by trying to load a module written for Apache 1.3. ... Please use...
Jeff Trawick
trawick@...
Jun 2, 2003 2:03 pm
44487
... Why? It's running during the translate_name phase ... You mean for mod_perl to internally hook into map_to_storage and if the ->handler is DIR_MAGIC_TYPE,...
Stas Bekman
stas@...
Jun 2, 2003 11:20 pm
44488
... When I've ported mod_perl 2.0 build to AIX, I have resorted to just using -berok (which is one of the flags enabled by -G). -G itself didn't quite work, I...
Stas Bekman
stas@...
Jun 2, 2003 11:24 pm
44489
... actually I should have said " -Wl,-brtl", as that is what we use with apr (and any apr apps that pick up apr ldflags)... as you pointed out, -G is more...
Jeff Trawick
trawick@...
Jun 3, 2003 12:27 am
44490
... Yes, I forgot to mention -brtl. So I'm using -brtl, -berok ... Cool. We don't use libtool for building mod_perl. We get the mix of flags from perl and...