Fabian Kreitner wrote:
Fabian Kreitner wrote:

 PerlInterpStart       1
 PerlInterpMax         1
 PerlInterpMaxRequests 1
This works for me.
FYI, you need an ithread enabled perl, but you probably know that or you wouldn't have gotten this far :)


<VirtualHost *:8080>
    DocumentRoot /httpd-2.0.54/prefork-ithreads/my_htdocs

    PerlSwitches  +inherit

    PerlInterpStart 1
    PerlInterpMax 1
    PerlInterpMaxRequests 1

    PerlResponseHandler ModPerl::PerlRunPrefork

    <Files *.epl>
        SetHandler perl-script
        PerlOptions -ParseHeaders
        Options +ExecCGI
    </Files>
</VirtualHost>

Test Script:
#!perl

$count++;

print "Content-Type: text/html\n\n";
print "Count is $count\n";

1;



--
END
------------------------------------------------------------
    What doesn't kill us can only make us stronger.
                Nothing is impossible.
                                
Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/
Senior Developer / Liquidity Services, Inc.
  http://www.liquidityservicesinc.com
       http://www.liquidation.com
       http://www.uksurplus.com
       http://www.govliquidation.com
       http://www.gowholesale.com

Reply via email to