Re: Possible module

2002-06-10 Thread Andrew McNaughton
Even without modperl, There's More Than One Way To Do It. I like mod_rewrite for this sort of task. See the examples for Virtual host configurations in the 'Apache URL Rewriting Guide'. If this is all you're using mod_perl for, then mod_rewrite is likely to be a better, slimmer option than

Re: Invoke PHP scripts?

2002-05-29 Thread Andrew McNaughton
On Wed, 29 May 2002, Thomas Klausner wrote: Hi! On Tue, May 28, 2002 at 09:48:14PM -0600, Ryan Thompson wrote: I'm developing a large-ish web site in which I would like to use a combination of mod_perl (90%) and PHP (10%). I have run into a roadblock trying to include the output of a

Re: mod-perl_2.0

2002-05-28 Thread Andrew McNaughton
On Tue, 28 May 2002, Kent, Mr. John wrote: So how does this work now? If it doesn't or it would take too much time to explain it, I certainly can understand and will simply load and continue to use Apache 1.3.24 and mod-perl 1.26 Things may have changed, in which case someone will gainsay

Re: Configuring mod_perl on Debian

2002-05-28 Thread Andrew McNaughton
On Tue, 28 May 2002, Ian D. Stewart wrote: Date: Tue, 28 May 2002 08:14:26 -0400 From: Ian D. Stewart [EMAIL PROTECTED] To: Jeff A [EMAIL PROTECTED] Cc: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: Configuring mod_perl on Debian On 2002.05.28 04:03 Jeff A wrote: From: Andrew

Re: back-tracking

2002-05-27 Thread Andrew McNaughton
nedit takes. It's acceptably accurate for most purposes, and it's fast. Andrew McNaughton On Mon, 27 May 2002, Lucas M. Saud wrote: Date: Mon, 27 May 2002 12:43:17 -0300 From: Lucas M. Saud [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: back-tracking hi, i'm writting

Re: Configuring mod_perl on Debian

2002-05-27 Thread Andrew McNaughton
Sounds to me like you're not setting your content-type correctly for some reason. Have a look at the headers being sent out. It's either not sending this header, or it's sending something the browser doesn't know what to do with. Andrew On Sun, 26 May 2002, Ian D. Stewart wrote: Date:

Re: Configuring mod_perl on Debian

2002-05-27 Thread Andrew McNaughton
My guess is that some error message is terminating your headers before the content-type is sent. stdout and stderr get buffered independently so the stderr can come out of your script first, even if it's generated later in your code. * Set $|=1; as the first thing you do in your test script,

Re: [OT] Re: back-tracking

2002-05-27 Thread Andrew McNaughton
On Tue, 28 May 2002, Ron Savage wrote: On Tue, 28 May 2002 04:52:48 +1200 (NZST), Andrew McNaughton wrote: [snip] That's not me below, I quoted Lucas M. Saud [EMAIL PROTECTED]: i'm writting a module to highlighting of Perl syntactical structures, but the current code is very slow

Re: Desperate for ePerl fix on 5.6.1

2002-05-12 Thread Andrew McNaughton
PERL_ARCH= i386-freebsd You can set these on the command line, which gets tedious. I've been in the habit of patching bsd.port.mk so it gets these right, but it looks like that's probably not necessary any more. It looks like you should be able to just set these in /etc/make.conf Andrew

Re: how to see /server-status when at MaxClients?

2002-05-11 Thread Andrew McNaughton
On Fri, 10 May 2002, John E. Leon Guerrero wrote: Date: Fri, 10 May 2002 16:54:47 -0700 From: John E. Leon Guerrero [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: how to see /server-status when at MaxClients? if a job hangs (due to database locking for instance), then a mod_perl child

Re: Memory explodes loading CSV into hash

2002-04-28 Thread Andrew McNaughton
as before through a hash of arrays. Andrew McNaughton

mod_bandwith like mechanism implemented in modperl?

2002-04-27 Thread Andrew McNaughton
as a basis for implementing this sort of policy? Andrew McNaughton

Re: File::Redundant

2002-04-25 Thread Andrew McNaughton
cp because of it's capability to define exclusion lists when doing a recursive copy of a directory. Andrew McNaughton

Re: two distinct installations

2002-04-23 Thread Andrew McNaughton
as appropriate. That said, I'm not sure why you'd want to do this. Usually the things you need to run as root are not the things you need mod_perl's speed for. I suspect you might be better to look at whether you could use cgi scripts run through a suid wrapper. Andrew McNaughton On Tue, 23 Apr

Re: Installing mod_perl 1.26 - URI::URL error

2002-04-23 Thread Andrew McNaughton
(INC) as you used when you did the force install? This can happen if you update your system perl after installing mod_perl. Andrew McNaughton