Thread mod_perl installation auf Windows XP
(17 answers)
Opened by tomyg1 at 2012-11-30 13:01
Du hast auch wirklich alle Perl-Module für mod_perl2 und libapreq2 installiert?
Mal zum Test: 1. Verzeichnis perl im Apache-Programmverzeichnis erstellen 2. folgende test.pl reinkopieren Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 ## ## printenv -- demo CGI program which just prints its environment ## print "Content-type: text/plain; charset=iso-8859-1\n\n"; foreach $var (sort(keys(%ENV))) { $val = $ENV{$var}; $val =~ s|\n|\\n|g; $val =~ s|"|\\"|g; print "${var}=\"${val}\"\n"; } 3. Apache neustarten 4. http://localhost/perl/test.pl aufrufen PS: ich habe derzeit unter Win32 kein mod_perl2 und Perl 5.16 am laufen. |