Kann es sein dass bei dir mod_perl oder sowas läuft?
Weiß ich nicht, woran kann ich das erkennen?
Weiß ich auch nicht. Ich nehme an das steht in einer Umgebungsvariabel. Laß sie die mal ausgeben:
env.pl
#!/usr/bin/perl -w
use strict;
use CGI;
print CGI::header(), CGI::start_html();
my @out;
foreach(sort keys(%ENV)) {
push @out, CGI::Tr( CGI::td( [CGI::b($_), $ENV{$_}]));
}
print CGI::table( @out);
print CGI::end_html();
Struppi.