Probleme mit Download- in Datei nix drin ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Probleme mit Download- in Datei nix drin ?

    hallo,

    der download klappt, allerdings sind die Dateien leer

    kann jemand sagen, warum ?

    PHP Code:
    <?php
    $file 
    $_GET['dl'];
    $file explode ('/',$file);
    $last array_pop ($file);

    chdir ($file);

    header("Content-Disposition: atachment; filename=$last");
    header("Content-Type: application/octet-stream");
    header("Pragma: no-cache");
    header("Expires: 0");
    ?>
    <Life>Traumprojekt-Die Design-Community</life>

  • #2
    PHP Code:


    <?php

    $file 
    $_GET['dl'];

    $file explode ('/',$file);

    $last array_pop ($file);



    chdir ($file);



    header("Content-Disposition: atachment; filename=$last");

    header("Content-Type: application/octet-stream");

    header("Pragma: no-cache");

    header("Expires: 0");

    $file fopen($last,'rb');
    $data fread($file,filesize($last));
    fclose($file);

    echo 
    $data;


    ?>

    Comment

    Working...
    X