Non identifié (S’identifier/S’inscrire)

Catégories

Vanilla 1.1.2 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorfbvdka35
    • CommentTimeFeb 6th 2008
     
    Voici la correction à appliquer à get.php pour faire fonctionner le download de photo :
    remplacer tout le code de get.php (dans [picsengine_dir]/xml/) par le code suivant :

    <?PHP
    define("cROOT",dirname(__FILE__)."/../admin/");
    require_once(cROOT."library/Core.php");
    $core = new Core("../admin/");

    if (!$core->gGet('id'))
    exit;

    require_once(cROOT."library/System.PhotoManager.php");
    $photo = new Photo($core);
    $photo->setInfo("id",$core->gGet('id'));
    if ($photo->load()) {
    $rpathimage=realpath(cROOT."../".$core->config['photos']."large/".$photo->getInfo('url'));
    header("Cache-Control: max-age=60");
    header("Cache-Control: private");
    header("Content-Description: File Transfer");
    header("Content-Type: application/force-download");
    header('Content-Disposition: attachment; filename='.$photo->getInfo('url'));
    header("Content-Transfer-Encoding: binary");
    header("Content-Length: ".filesize($rpathimage));
    @set_time_limit(0);
    $fp = @fopen($rpathimage, "rb");
    set_magic_quotes_runtime(0);
    $chunksize = 1*(512*1024); // how many bytes per chunk
    while($fp && !feof($fp)) {
    $buffer = fread($fp, $chunksize);
    print $buffer;
    flush();
    sleep(1);
    }
    set_magic_quotes_runtime(get_magic_quotes_gpc());
    fclose($fp);
    }
    ?>
    • CommentAuthorEtienne
    • CommentTimeFeb 9th 2008
     
    J'ai remplacé mon ancien get.php par celui-ci, c'est pire...

    Sous IE cela ne fonctionne toujours pas, et sous Firefox, avant çà marchait et là non... Je suis revenu à l'ancien get.php.

    Si quelqu'un a une idée, je suis preneur !
    Etienne
    • CommentAuthordave
    • CommentTimeFeb 22nd 2008
     
    Idem ça ne fonctionne pas.....

    Si quelqu'un a une idée, je suis preneur ! en effet on est bien plusieurs dans le même cas......
    • CommentAuthorEtienne
    • CommentTimeil y a 5 jours
     
    Personne n'a résolu ce souci de get.php sous IE ?