Re: Interpreting HTML

2003-08-26 Thread Patrick Galbraith
Hey, I just noticed the first email that you sent, I must've thought it was a question - I must really need sleep since I've been mispelling and reading incorrectly today ;) Sorry for replying to it as though it was a question. Josh Chamas wrote: js wrote: I have apache2 and mod_perl2 setup

RE: Interpreting HTML

2003-08-26 Thread Jeremy
Thanks guys, Location ~ /test/*.pl Worked like a charm! I appreciate the help for a newbie! JS -Original Message- From: Patrick Galbraith [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 6:22 PM To: Josh Chamas Cc: js; [EMAIL PROTECTED] Subject: Re: Interpreting HTML Hey, I

Re: Interpreting HTML

2003-08-25 Thread Stas Bekman
2.0 docs aren't completed and most 1.0 docs apply to 2.0. So for now one has to look at the 1.0 docs, if /docs/2.0 doesn't cover your question yet. Help to port the 1.0 docs to 2.0 is very appreciated. __ Stas Bekman

Re: Interpreting HTML

2003-08-25 Thread Josh Chamas
js wrote: I have apache2 and mod_perl2 setup and running without any problems with .PL files. In apache2 I have my test directory setup like the following: Alias /test/ C:/apache2/htdocs/ Location /test/ SetHandler perl-script PerlResponseHandler ModPerl::Registry PerlOptions

Re: Interpreting HTML

2003-08-25 Thread Patrick Galbraith
Js, instead of Location, use Files Alias /test/ C:/apache2/htdocs/ FILES ~ \.pl$ SetHandler perl-script PerlResponseHandler ModPerl::Registry PerlOptions +ParseHeaders Options +ExecCGI /FILES Hope this is the solution, or what you're looking for, regards, Patrick js wrote: I

Re: Interpreting HTML

2003-08-25 Thread Patrick Galbraith
LocationMatch I think is what you want. Josh Chamas wrote: js wrote: I have apache2 and mod_perl2 setup and running without any problems with .PL files. In apache2 I have my test directory setup like the following: Alias /test/ C:/apache2/htdocs/ Location /test/ SetHandler perl-script

Re: Interpreting HTML

2003-08-25 Thread Josh Chamas
Patrick Galbraith wrote: LocationMatch I think is what you want. Location ~ ... and LocationMatch ... do the same thing. The trick is the ~ after the Location. Please see http://httpd.apache.org/docs-2.0/mod/core.html#location for more information. Regards, Josh

Re: Interpreting HTML

2003-08-25 Thread Patrick Galbraith
yeah, I wasn't quite sure of it... I've been so busy, I never played with it to see what it was capable of. Thanks for the pointer! regards, Patrick Josh Chamas wrote: Patrick Galbraith wrote: LocationMatch I think is what you want. Location ~ ... and LocationMatch ... do the same