roeya
Posts: 181
|
Posted: 05/11/2004, 11:08 AM |
|
I need to setup a configuration that uses mod_perl/win32 does anyone know how to setup this configuartion ?
_________________
http://www.infoneto.com/ |
 |
 |
Aaron Settles
|
Posted: 05/18/2004, 1:10 PM |
|
Take a look at the modperl page, they have some tips for win32 configurations:
http://perl.apache.org/docs/2.0/os/win32/index.html
|
|
 |
Conrad F. Staeheli
|
Posted: 06/30/2004, 10:24 AM |
|
Try this:
#
# for ModPerl::Registry Perl scripts which have been adapted to full mod_perl (fully fledged mod_perl Perl Scripts)
# to gain full performance benefit through mod_perl.
# The <Files "*.pl"> directive prevents mod_perl from processing other than Perl Scripts.
#
Alias /SCSchyen/ "C:/Dokumente und Einstellungen/conrad/Eigene Dateien/Eigene Webs/SCSchyen/"
<Directory "C:/Dokumente und Einstellungen/conrad/Eigene Dateien/Eigene Webs/SCSchyen/">
<Files "*.pl">
SetHandler perl-script
PerlResponseHandler ModPerl::Registry
Options +ExecCGI
PerlOptions +ParseHeaders
# PerlOptions +SetupEnv
Allow from all
</Files>
</Directory>
#
# for ModPerl::PerlRun Original Perl CGI scripts which have not yet been adapted to mod_perl but
# gain some performance benefit through mod_perl.
# The <Files "*.pl"> directive prevents mod_perl from processing other than Perl Scripts.
#
#Alias /SCSchyen/ "C:/Dokumente und Einstellungen/conrad/Eigene Dateien/Eigene Webs/SCSchyen/"
#<Directory "C:/Dokumente und Einstellungen/conrad/Eigene Dateien/Eigene Webs/SCSchyen/">
#<Files "*.pl">
# SetHandler perl-script
# PerlResponseHandler ModPerl::PerlRun
# Options +ExecCGI
# PerlOptions +ParseHeaders
# PerlOptions +SetupEnv
# Allow from all
#</Files>
#</Directory>
I'm currently preparing a Perl Deployment Guide for CodeCharge, I'm nearly finished with the draft. You will find some good Information, Links and Books in there too.
Regars
Conrad
|
|
 |
Aaron Settles
|
Posted: 11/17/2004, 12:24 PM |
|
Just found this, was wondering how the perl deployment guide for codecharge was going. I'm always interested to see how other people are using it.
|
|
 |
|