Stas Bekman wrote:
As I wrote this, I'm actually starting to think that it's Apache who
should ignore the flush bucket if it had seen no other data so far, and
not generate any headers till it actually sees the real data.
And I went to produce a patch in http_filter, I figured that that would be
Mark James wrote:
Stas Bekman wrote:
Mark James wrote:
The cause of the problem was my perl code calling flush.pl and
flushing STDOUT at a point prior to it printing the response headers.
Hmm, why do you flush?
STDOUT is flushed prior to a fork to exec an external binary (rcs).
The child is c
Stas Bekman wrote:
Mark James wrote:
The cause of the problem was my perl code calling flush.pl and
flushing STDOUT at a point prior to it printing the response headers.
Hmm, why do you flush?
STDOUT is flushed prior to a fork to exec an external binary (rcs).
The child is closing STDOUT and then
mod_rewrite looks like it will be the correct way to go in the future, but a
half dozen Alias got the site working again quickly.
I thought that Alias was only good for aliasing directories. It can be used
for individual files.
For future reference, using my example:
http://url/calendar/month/04
Hi,
I'm having a hard time making mod_perl(1.27) enabled Apache treat
requests to directories so that the directory listing is shown (like the
default behavior when there is not DirectoryIndex file).
I pretty much just threw away all of my mod_perl specific configuration
from my httpd.conf, and
[EMAIL PROTECTED] wrote:
The cause of the problem was my perl code calling flush.pl and
flushing STDOUT at a point prior to it printing the response headers.
Under mp2, flushing STDOUT calls mpxs_output_flush in
xs/Apache/RequestIO/Apache__RequestIO.h, which in turn calls
ap_rflush, which triggers
Mark James wrote:
Mark James wrote:
I'm having CGI redirect problems mp2 (cvs).
Instead of being redirected to the proper web page, I'm sometimes
getting a "302 Moved" page containing a link to the correct URL.
Damn this was a hard bug to track down.
The cause of the problem was my perl code c
Hann, Brian wrote:
Actually I think I got it, but thanks for the tip on $r->prev->notes.
I'll have to give it a try. And yes, I've been poring over the cookbook
for most of the day :)
:)
Here's what I ended up doing: When I hit a place in my authen module
that required me to do:
$r->note_basic_
Actually I think I got it, but thanks for the tip on $r->prev->notes.
I'll have to give it a try. And yes, I've been poring over the cookbook
for most of the day :)
Here's what I ended up doing: When I hit a place in my authen module
that required me to do:
$r->note_basic_failure;
return AUTH_RE
Hann, Brian wrote:
I have a mod_perl handler set as the 401 ErrorDocument for a certain
location that requires authentication. I would like to store data in
notes() in the first location so that the 401 handler can access them.
Is that possible? So far I haven't been able to get it to work.
Title: Message
I have a mod_perl
handler set as the 401 ErrorDocument for a certain location that requires
authentication. I would like to store data in notes() in the first
location so that the 401 handler can access them. Is that possible? So far
I haven't been able to get it to work. I
KIVES,BRUCE (HP-USA,ex1) wrote:
Any other ideas on how to hide the .pl ?
There are dozens of ways to make /calendar/month run month.pl. Here are
some simple ones:
- mod_rewrite
- Alias
- DirectoryIndex month.pl
You could also turn month.pl into a handler and just do this:
SetHandler perl-s
Well, I guess taking a break from the problem helped me fix it, but
I'm not sure how. I came back to my machine, removed the symlink in
"/usr/bin/" to "/sw/bin/glibtool" and restored the original "libtool"
binary, removed the existing libapreq source directory, unpacked it
from the tarball, and st
You might want to consider downloading the 1.3.23 source for mod_speling and
using diff to see if they changed something. It might be something simple
that can be changed and patched. You also might be able to use the mod_speling
from 1.3.23 in 1.3.27 without any problem.
Given the relative simp
On Wed, Mar 19, 2003 at 02:04:31PM -0500, KIVES,BRUCE (HP-USA,ex1) wrote:
>
> Any other ideas on how to hide the .pl ?
I usually use mod_rewrite.
The swiss-army-knife for URL-polishing.
/magnus
--
http://x42.com
I've been trying to compile libapreq 1.1 (Apache::Request) on Mac OS
10.2.4 for a couple of hours, but I'm having no luck. I've been
following the directions in the INSTALL.MacOSX file and following
along with David Wheeler's article "Installing libapreq on Jaguar: An
Update"
(http://www.macdevcen
I have recently updated from Apache 1.3.23? to 1.3.27. Things are behaving
differently, and I think the problem lies with mod_speling. Previously, if
there was only one possible choice for a misspelled URL, it would just
redirect it without asking. Now it asks every time.
I used this feature to
On Tue, 2003-03-18 at 19:16, [EMAIL PROTECTED] wrote:
> I have a script called update.pl in the directory /web/dev/scripts. This
> script is configure
> to run under mod_perl. I got another script with the same name update.pl in
> /web/stage/scripts.
> This script is also configure mod_perl.
>
Hi,
I have a script called update.pl in the directory /web/dev/scripts. This
script is configure
to run under mod_perl. I got another script with the same name update.pl in
/web/stage/scripts.
This script is also configure mod_perl.
My question: is Apache know the difference between both
Comparing your post and that of others, I see that you use
Authentication through mod_perl. What happens if you completely
disable Authentification? Do you still experience the same
problem?
--Frank
Abdul-wahid Paterson wrote:
Hi,
Thank you again for answering me, Abdul-wahid.
This is the config I have for nagios on one of my servers. I also have
mod_perl working so there should be no problem with the two together.
(My directory paths are different to yours but the principle is the
same)
I tr
Nikolaus Rath wrote:
Francesc Guasch <[EMAIL PROTECTED]> wrote:
Options ExecCGI
Alias /nagios/ /usr/share/nagios/
AllowOverride AuthConfig
Options None
I suspect that the Options directive in the directory section
overwrites the one in the location directive. It doesn't matter
Hi,
Apache::ASP also works very fine:
http://www.apache-asp.org/
Helmut
--On Wednesday, March 19, 2003 03:55:20 -0800 "www.ReadNotify.com"
<[EMAIL PROTECTED]> wrote:
Hi,
I want to do this (serverside of course); is it
possible?
I am running
print $ENV{MOD_PERL};
print "process ID $$";
on
> "www" == www ReadNotify com <[EMAIL PROTECTED]> writes:
www>
www> I am running
www>
www> print $ENV{MOD_PERL};
www> print "process ID $$";
www>
www> on Apache!!
www>
www> What modules/config/etc do I need to set up?
Either Mason or Template Toolkit would probably do. I prefer the lat
Hi!
On Wed, Mar 19, 2003 at 03:55:20AM -0800, www.ReadNotify.com wrote:
> I want to do this (serverside of course); is it
> possible?
>
>
> I am running
>
> print $ENV{MOD_PERL};
> print "process ID $$";
>
> on Apache!!
>
>
> What modules/config/etc do I need to set up?
There are various
Hi,
I want to do this (serverside of course); is it
possible?
I am running
print $ENV{MOD_PERL};
print "process ID $$";
on Apache!!
What modules/config/etc do I need to set up?
Chris.
__
Do you Yahoo!?
Yahoo! Platinum - Watch CBS' NCAA Marc
>
> The cause of the problem was my perl code calling flush.pl and
> flushing STDOUT at a point prior to it printing the response headers.
> Under mp2, flushing STDOUT calls mpxs_output_flush in
> xs/Apache/RequestIO/Apache__RequestIO.h, which in turn calls
> ap_rflush, which triggers creation of
Mark James wrote:
I'm having CGI redirect problems mp2 (cvs).
Instead of being redirected to the proper web page, I'm sometimes
getting a "302 Moved" page containing a link to the correct URL.
Damn this was a hard bug to track down.
The cause of the problem was my perl code calling flush.pl and
f
28 matches
Mail list logo