distantcouk wrote:
> 
> Hello all - I'm Dave & I just joined the group as
> 
> a) I am new to Apache
> b) I have a vexing problem
> 

Make sure your site is written in PerlScript, or it won't run
under Apache::ASP.  For other Apache options to run ASP VBScript
please see 

  http://www.apache-asp.org/faq.html#Can%20I%20script97de8006

> I have to run a local copy of an asp site, and I have installed
> Apache as the standard setup suggests you do. I have looked at the
> asp examples in the site/eg directory, and they appear to work, but
> the site I have to look at includes lines such as the following:
> 
> <!--#include virtual="Include/_Common.asp" -->
> 
> <!--#include virtual="content/blue_navbar.html"-->
> 
> <!--#include virtual="content/jumpto.asp"-->
> 
> <!--#include virtual="content/bottomnav.html"-->
> 

If you can run perl scripted ASP, then you can enable
the include virtual SSI command with Apache::Filter
& Apache::SSI.  For an example of this, see:

  http://www.apache-asp.org/eg/ssi_filter.ssi

with the config driven by:

# .ssi for full ssi support, with Apache::Filter
<Files ~ (\.ssi)>
        SetHandler perl-script
        PerlHandler Apache::ASP Apache::SSI
        PerlSetVar Global .
        PerlSetVar Filter On
</Files>

-- Josh
_________________________________________________________________
Joshua Chamas                           Chamas Enterprises Inc.
NodeWorks Founder                       Huntington Beach, CA  USA 
http://www.nodeworks.com                1-714-625-4051

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to