RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jerrad Pierce
prompt# perl use Apache::ASP; print "Hello World\n"; ^D If you get no errors it's there >-Original Message- >From: Jason [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, September 13, 2000 2:28 PM >To: [EMAIL PROTECTED] >Subject: How can I tell if Apache::ASP is available? > > >This is the o

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread G.W. Haywood
Hi Jason, On Wed, 13 Sep 2000, Jason wrote: > This is the output of my httpd -l command .. ASP is a perl module, it's not in the output of httpd -l. > how can I tell if Apache::ASP is available? Do you mean if it's in your filesystem somewhere, or if it's been loaded by mod_perl, or if you'v

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jason
and Apache::ASP?? -Original Message- From: Jerrad Pierce [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 13, 2000 2:56 PM To: Jason Ables; [EMAIL PROTECTED] Subject: RE: How can I tell if Apache::ASP is available? prompt# perl use Apache::ASP; print "Hello World\n"; ^D If you

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jerrad Pierce
Yes. --begin hello.asp <%= "Hello World" %> --end hello.asp >-Original Message- >From: Jason [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, September 13, 2000 3:04 PM >To: 'Jerrad Pierce' >Cc: [EMAIL PROTECTED] >Subject: RE: How can I tell i

RE: How can I tell if Apache::ASP is available?

2000-09-13 Thread Jason
, 2000 3:12 PM To: Jason Ables; Jerrad Pierce Cc: [EMAIL PROTECTED] Subject: RE: How can I tell if Apache::ASP is available? Yes. --begin hello.asp <%= "Hello World" %> --end hello.asp >-Original Message- >From: Jason [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, S

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread Joshua Chamas
"G.W. Haywood" wrote: > > Hi Jason, > > On Wed, 13 Sep 2000, Jason wrote: > > and fetch the page with a browser. > > If you put > > PerlSetVar debug 2 > > in your httpd.conf then you'll get heaps of irritating (sorry Josh:) > output from ASP if it's doing anything. > Debug -2 is when its i

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread Victor Michael D. Blancas
> This is the output of my httpd -l command .. how can I tell if Apache::ASP > is available? you can't from http -l. Apache::ASP is not an apache module but a perl module. try 'perldoc Apache::ASP' if you see the documentation then Apache::ASP was properly installed. another thing, you will not

Re: How can I tell if Apache::ASP is available?

2000-09-13 Thread Joshua Chamas
"Victor Michael D. Blancas" wrote: > > > This is the output of my httpd -l command .. how can I tell if Apache::ASP > > is available? > > you can't from http -l. Apache::ASP is not an apache module but a perl > module. try 'perldoc Apache::ASP' if you see the documentation then > Apache::ASP wa