Quoting Michael J Asbridge <[EMAIL PROTECTED]>:
> to get active state to process asp's? Not sure. Help.
You need mod_perl + Apache::ASP

Some links:
  http://perl.apache.org/guide/
  http://www.apache-asp.org/

1. Get the latest Apache - anything prior to 1.3.23 has a security 
vulnerability. 
2. Get the latest ActiveStatePerl 
3. Read: http://perl.apache.org/distributions.html 
4. Install mod_perl via ppm from ftp://theoryx5.uwinnipeg.ca/ 
5. Install Apache::ASP via ppm from ftp://theoryx5.uwinnipeg.ca/ 

You must get the ppm archive that matches the version number of Apache you 
just installed, so today that would be: 

ftp://theoryx5.uwinnipeg.ca/pub/other/ppd/x86/mod_perl-1.26_1.3.23.tar.gz 

Typing the following will install the mod_perl ppm archive for whatever is 
the current build of Apache Win32: 

ppm install mod_perl 
--location=http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer 

The install script will ask where to put Apache modules. 

Add the following lines to your httpd.conf: 

LoadModule perl_module modules/mod_perl.so 
AddModule mod_perl.c 

To setup a Apache::Registery for CGI emulation, and Apache::ASP for asp 
scripting add the following lines to your httpd.conf (adjust for your 
installation): 

<IfModule mod_perl.c>

    PerlModule Apache::Registry 
    
    Alias /mp/ "C:/Apache/mod_perl/"
    <Location /perl>
        SetHandler perl-script
        PerlHandler Apache::Registry
        PerlSendHeader On
        Options +ExecCGI
    </Location>

    # Apache::ASP, Win9x workaround for lack of flock() support:
    #<Perl>
    #   *CORE::GLOBAL::flock = sub { 1 };
    #</Perl>
    
    PerlModule Apache::ASP 
    
    Alias /asp/ "C:/Apache/asp/"
    <Location /asp>
        SetHandler perl-script
        PerlHandler Apache::ASP
        PerlSetVar  Global c:/Apache/temp
        PerlSetVar  GlobalPackage ASP::Global
        PerlSetVar  DynamicIncludes 1
        PerlSetVar  UseStrict 1
        PerlSetVar  PodComments 1
    </Location>
    
</IfModule>

Then read:  http://perl.apache.org/guide/ 

-- 
  Simon Oliver 
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to