does mod_perl with USE_DSO=1 require perl built with -Duseshrplib ?

2000-05-26 Thread Benedict Lofstedt
this as well? --- benedict -- Benedict Lofstedt [EMAIL PROTECTED] University of Aarhus, Department of Computer Science Fax: + 45 8942 3255 Building 540, Ny Munkegade, DK-8000 Aarhus C, Denmark.Phone: + 45 8942 3222

RE: how do I use perl sections

2000-05-05 Thread Benedict Lofstedt
Eric Cholet writes: but you're not following my example quoted above. @ScriptAlias is a list of aliases. Each alias is a _reference_ to a two-element array. I got the following to work after stopping/restarting the server: Perl my @cgi_users = qw(xx yy); foreach (@cgi_users) {

RE: how do I use perl sections

2000-05-04 Thread Benedict Lofstedt
Eric, push @ScriptAlias, [ "/cgi-$_", "/users/$_/cgi-bin" ]; Where can I find better info than given in http://perl.apache.org/src/mod_perl.html#PERL_SECTIONS ? http://www.modperl.com/book/chapters/ch8.html#Configuring_Apache_with_Perl See the paragraph: "Directive is

how do I use perl sections

2000-05-03 Thread Benedict Lofstedt
/users/$_/cgi-bin"; } /Perl but it did not work. What is wrong with this Perl section? Where can I find better info than given in http://perl.apache.org/src/mod_perl.html#PERL_SECTIONS ? I have PERL_SECTIONS=1 in my mod_perl build, and the configuration is read without any errors. --- bene