Thread Datei-Download: Kleines Problem (13 answers)
Opened by Gast at 2004-05-02 19:48

betterworld
 2004-05-02 20:24
#2302 #2302
User since
2003-08-21
2614 Artikel
ModeratorIn

user image
esskars Loesung kannte ich noch gar nicht. Ich hatte das Problem neulich auch und habe es geloest, indem ich einfach einen Link auf script.pl/dateiname gesetzt habe. Wenn der Dateiname dynamisch erzeugt wird, kann man es auch so machen:

Code: (dl )
1
2
3
4
5
6
if($ENV{PATH_INFO}) {
print "Content-Type: application/octet-stream\n\n";
print $inhalt;
} else {
print "Location: http://host/cgi-bin/script.pl/$dateiname\n\n";
}

(nicht getestet)

Aber wahrscheinlich ist esskars Loesung da besser.

View full thread Datei-Download: Kleines Problem