Thread Unklare Fehlermeldung: Variable "$p1" will not stay shared
(46 answers)
Opened by wastl at 2011-02-04 12:30
Dein Perl-Programm liefert bei mir
... MOD_PERL="mod_perl/2.0.4" MOD_PERL_API_VERSION="2" .... In meiner conf/extra steht die Datei startup.pl mit folgendem Inhalt: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 (); use Apache::ASP (); 1; Ich habe dann use ModPerl::Registry (); deaktiviert und XAMPP neu gestartet, beim zweiten Versuch sogar den Rechner neu gestartet aber die Umgebungsvariablen sind nach wie vor MOD_PERL="mod_perl/2.0.4" MOD_PERL_API_VERSION="2" |