Re: question - can asp be run as cgi???

2000-05-19 Thread Joshua Chamas
Charles Dalsass wrote: > > Hey dudes, new poster here. > > I've got a project which the client has said 'no mod perl' but only cgi > and perl. They've got a really powerful machine, but are 'afraid' of > using mod_perl (because of memory issues, administration etc). > Performance should not be a

Re: Question about SendFile.pm from Eagle book

2000-02-12 Thread Frank Wiles
On Sat, 12 Feb 2000 [EMAIL PROTECTED] wrote: > As a beginner in Mod_perl, > I have to get the file from the remote host (Mod_perl enabled Apache) > if not in the local host, so I am currently modifying SendFile.pm in Eagle > book > at > > unless(-e $r->finfo) { > ... > instead of givin

Re: correction! Re: Question about error log message and PERL_SSI

2000-02-06 Thread Stas Bekman
uot;ModPerl Mailing List (E-mail)" <[EMAIL PROTECTED]> > > Subject: Re: correction! Re: Question about error log message and PERL_SSI > > > > > > Ooops, I was wrong, you need to use ALL_HOOKS=1 to enable all handlers or > > > > just PERL_SSI=1 for PerlSSI. >

Re: correction! Re: Question about error log message and PERL_SSI

2000-02-06 Thread Bill Jones
Can I just throw in a 'me too, as well' ? EVERYTHING=1 gets PERL_SSI... Bill Jones * Systems Programmer * http://www.fccj.org/cgi/mail?sneex ('> Running -

Re: correction! Re: Question about error log message and PERL_SSI

2000-02-06 Thread Ask Bjoern Hansen
On Sun, 6 Feb 2000, Stas Bekman wrote: [...] > > > EVERYTHING=1 should install PerlSSI as well. > > > > > > Configure perl-status to work (see 'perldoc Apache::Status') then do: > > > http://localhost/perl-status?hooks to check the enabled hooks. > > > > Thanks for that information. That showe

Re: correction! Re: Question about error log message and PERL_SSI

2000-02-06 Thread Stas Bekman
> > Ooops, I was wrong, you need to use ALL_HOOKS=1 to enable all handlers or > > just PERL_SSI=1 for PerlSSI. > > > > (I thought EVERYTHING=1 installs it all :) > > So I guess I need to rebuild it manually, eh, with ALL_HOOKS=1? No easier > way to add this functionality? Nope you don't have

Re: correction! Re: Question about error log message and PERL_SSI

2000-02-06 Thread gnielson
On Sun, 6 Feb 2000, Stas Bekman wrote: > Date: Sun, 6 Feb 2000 23:37:56 +0200 (IST) > From: Stas Bekman <[EMAIL PROTECTED]> > To: gnielson <[EMAIL PROTECTED]> > Cc: "ModPerl Mailing List (E-mail)" <[EMAIL PROTECTED]> > Subject: correction! Re: Qu

correction! Re: Question about error log message and PERL_SSI

2000-02-06 Thread Stas Bekman
> > Date: Sun, 6 Feb 2000 23:20:49 +0200 (IST) > > From: Stas Bekman <[EMAIL PROTECTED]> > > To: gnielson <[EMAIL PROTECTED]> > > Cc: "ModPerl Mailing List (E-mail)" <[EMAIL PROTECTED]> > > Subject: Re: Question about error log message

Re: Question about error log message and PERL_SSI

2000-02-06 Thread gnielson
Replies below: On Sun, 6 Feb 2000, Stas Bekman wrote: > Date: Sun, 6 Feb 2000 23:20:49 +0200 (IST) > From: Stas Bekman <[EMAIL PROTECTED]> > To: gnielson <[EMAIL PROTECTED]> > Cc: "ModPerl Mailing List (E-mail)" <[EMAIL PROTECTED]> > Subject: Re: Qu

Re: Question about error log message and PERL_SSI

2000-02-06 Thread Stas Bekman
> I successfully installed mod_perl under Apache/1.3.6 (Unix). However, when > attempting to run some Web pages I have that use #perl sub I get an error > log message, "unknown directive 'perl' in parsed doc." > > I installed mod_perl right from CPAN and assumed that mean EVERYTHING=1 > would be

Re: question, blessing objects, modifying them

2000-01-27 Thread Stas Bekman
Etienne, We all love the OO hype letters, but first it's the offtopic question, second it's the FAQ question. You can hunt for luck at the perl newsgroup or other perl generic list. But save your time and frustration -- read some books, for example 'Object Oriented Perl' by Domian and 'Perl CookB

Re: question, blessing objects, modifying them

2000-01-27 Thread Jeff Beard
Check out "perldoc perltoot" under Class interface. Cheers, Jeff At 01:43 PM 1/27/00 -0800, Etienne Pelaprat wrote: >hi all, > >i'm starting out doing some Object Oriented programming with mod_perl >and I define one object like this: > >sub new { > my $self = shift; > my $type

Re: question?

2000-01-20 Thread Rod Butcher
If I understand you correctly, you don't want to use mod_perl, just Perl. If so, the easiest way to use perl is to dowload ActivePerl (free) from Activestate website http://www.activestate.com/ActivePerl/download.htm It comes with great documentation, install it as per documentation. If you wish

Re: question about global.asa

2000-01-07 Thread Joshua Chamas
[EMAIL PROTECTED] wrote: > > Hi Joshua, > > I am using Apache::ASP module for my web site. Say, my > documentroot is set to /web/htdocs. Under this dir, I have > several sub directories (say, abc, xyz etc.). Each of these > sub-directories are supposed to be working as separate > applications. C

Re: Question on

1999-11-23 Thread Eric L. Brine
> When I use the statement, I get a single line that contains > the entire POST content, rather than just the first line of the post. > Can anyone think of why that would happen? Here's the snippet of my > code: > > $line = ; > $r->print("$line\n"); 1. There might not be more than one line.

Re: Question on

1999-11-23 Thread Spidaman The Defenestrator
Meanwhile, back at the ranch... > $line = ; > $r->print("$line\n"); > > In my response, I get the entire POST content echoed back to me, where I > only expected the first line. If I comment out the "print" statement, I > don't get anything echoed back (which is what I would expect). It really >

Re: Question about caching

1999-11-08 Thread Spidaman The Defenestrator
Make your handler aware of the mime type and suppress the expiration/cache headers if it's image/* or something like that. Meanwhile, back at the ranch... > I have a directory of images use for navigation purposes, but when > generating dynamic pages with: > > > sub handler

<    1   2