Zdravím, mám takový menší problém. Potřebuji stahovat soubory pomocí vynuceného stahování. Když chci stáhnout soubor typu doc, xls apod., tak není žádný problém. Ten nastává až když chci stáhnout nějaký obrázek - ten je totiž po stažení "nefunkční" (nic se nezobrazí, ale velikost souhlasí). Zde je kód:
$file = "obrazek_4.jpg";
header('Content-Description: File Transfer');
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));
readfile($file);
exit;