Thread Unklare Fehlermeldung: Variable "$p1" will not stay shared
(46 answers)
Opened by wastl at 2011-02-04 12:30
Stellt sich die Frage, ob du das Programm als mod_perl-Programm laufen lässt.
Meine Apache-Konfiguration für mod_perl 2: Code: (dl
)
1 ### config for mod_perl2 mit startup_modperl2.pl: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 use Apache2::Status; use ModPerl::Util (); use Apache2::RequestRec (); use Apache2::RequestIO (); use Apache2::RequestUtil (); use Apache2::ServerRec (); use Apache2::ServerUtil (); use Apache2::Connection (); use Apache2::Log (); use Apache2::Const -compile => ':common'; use APR::Const -compile => ':common'; use APR::Table (); use Apache2::compat (); use ModPerl::Registry (); use CGI (); 1; Mein Perl-Programm: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 #!perl.exe ## ## 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"; } liefert: Code: (dl
)
1 COMSPEC="C:\Windows\system32\cmd.exe" Ich empfehle http://perl.apache.org/docs/index.html als mod_perl-Dokumentation. Editiert von GwenDragon: Hinweis auf mod_perl-Dokumentation Last edited: 2011-02-05 14:47:41 +0100 (CET) |