Ernst: Dateidownload

Beitrag lesen

Hallo!

also ich versuche eine datei mittels cgi-script downzuloaden

das script schaut so aus:

#!C:/SPECTRUM/WebApps/Report_Gateway/Perl/bin/perl.exe -w

use cgi;
use CGI::Carp qw(fatalsToBrowser);
my $g = new CGI;
print $g->header("text/html"),
      $g->start_html("IOS");
opendir(DIR,'C:\SPECTRUM\WebApps\Report_Gateway\Apache\cgi-bin\ios') || die "Fehler $!";
while (defined($file=readdir(DIR)))
     {
        if ($file eq ".")
        {
        }
        elsif ($file eq "..")
        {
        }
        else
        {
#          print $file;
#          $file="/ios/".$file;
          print '<LI></li><a href="http://10.16.147.238:8080/cgi-bin/ios/'.$file.'">'.$file.'</a></LI>';
          print "<br/>";
        }
     }
print "<br/>";
print "<br/>";
print "</body></html>";

soweit funktioniert alles es kommt ein link, aber wenn ich darauf clicke passiert absolut nichts, kann mir da jemand sagen was da falsch ist, es sollte sich doch die abfrage öffnen, datei downloaden oder so etwas

danke Ernst