internet explorer 6 dosya sorunu hizmet php

1 Cevap php

dolu, ben istemci içine PHP ile dosya hizmet için bir sorun var. i indirmek istediğiniz zaman kaydedebilir ve açık iletişim görünür olacak ama download ilerleme göstermez. benim sorunum nedir?

i istemciye göndermek başlık:

header('Content-Type: ');
header('Content-Description: File Transfer');
header('Accept-Ranges: bytes');
header('Content-Transfer-Encoding: binary');

save dialog

http :/ / vzz.ir/files/kn5gsecfnoia1cqkfop6.jpg

progress not show in ip.

http :/ / vzz.ir/files/88ruak7ocjgn10ha9mda.jpg

1 Cevap

Sen ilerleme çubuğu görünür yapmak için dosya boyutu ile başlığını ayarlamanız gerekir. Içerik-türü de belirtilmelidir, application/ocet-stream bilinmeyen mime türü (veya indirme zorlamak) için kullanılması.

header('Content-Type: application/ocet-stream');
header('Content-Disposition: attachment; filename=test.dat');
header('Content-Length: '.filesize('test.dat'));
header('Content-Description: File Transfer');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
readfile('test.dat');
exit;