Hi leute wollte downloads per php starten lassen, habe auch nen script gefunden:
nur leider kommt nur das hier bei rum:
und danach wird noch der inhalt der datei ausgegeben, bzw. bei bildern nur 1000ende zeichen voller quatsch
wodran kann das liegen hab schon gegoogelt aber scheint bei anderen leuten zu funtzen! würde mich auf ne antwort freuen!
mfg
Code:
function download($file, $name) { $size = filesize($file); header("Content-type: application/octet-stream"); header("Content-disposition: attachment; filename=".$name); header("Content-Length: ".$size); header("Pragma: no-cache"); header("Expires: 0"); readfile($file); } download("./dateien/" . $dir . "/". $name,$name);
Code:
Warning: Cannot modify header information - headers already sent by (output started at /home/www/web16/html/ftp/upload.php:81) in /home/www/web16/html/ftp/includes/functions.inc.php on line 27 Warning: Cannot modify header information - headers already sent by (output started at /home/www/web16/html/ftp/upload.php:81) in /home/www/web16/html/ftp/includes/functions.inc.php on line 28 Warning: Cannot modify header information - headers already sent by (output started at /home/www/web16/html/ftp/upload.php:81) in /home/www/web16/html/ftp/includes/functions.inc.php on line 29 Warning: Cannot modify header information - headers already sent by (output started at /home/www/web16/html/ftp/upload.php:81) in /home/www/web16/html/ftp/includes/functions.inc.php on line 30 Warning: Cannot modify header information - headers already sent by (output started at /home/www/web16/html/ftp/upload.php:81) in /home/www/web16/html/ftp/includes/functions.inc.php on line 31
wodran kann das liegen hab schon gegoogelt aber scheint bei anderen leuten zu funtzen! würde mich auf ne antwort freuen!
mfg
Kommentar