Hm, komisch, jetzt hab ich das hier versucht:
$file = $file_path;
header("Content-Description: File Transfer");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($file));
@readfile($file);
und siehe da, es geht... verstehen muss ich das nicht...
Christoph