Download ile ilgili bi sorunum var

KrocK-eR

New member
HH Üyesi
Katılım
24 Ağu 2008
Mesajlar
114
Reaction score
0
Puanları
0
Arkadaşlar benim bi sitem var. Onun download bölümünde şöyle birşey istiyorum;

Rapidshare.com daki gibi resimleri bile açmadan bize soruyor ya AÇ KAYDET İPTAL diye, işte bunu sitemde uygulamak istiyorum. Ne eklersem ekliyim site otomatik olarak çalıştırmasın.

Yardımcı olur musunuz?
 
kimse yazmamış :(
 
Kodları buldum

Kod:
<?php
$file = 'dosyaismi.gif';
if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}
?>

Ama sadece gif için etkili.

Tüm formatları tanıtmamız lazım sanırsam.

Bunu bilen var mı?

Kaynağını vermeyi unuttum

http://www.php.net/readfile
 
Geri
Üst