У меня есть код:
$name = "jeffrey.epub"; //for naming only
$file = "test/cover/cabang.epub"; //the real file to be downloaded
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.basename($name).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
но после загрузки файла он вышел поврежденным. header('Content-Type: application/octet-stream');
в header('Content-Type: application/epub+zip');
но все же он был поврежден, мне было интересно, в чем проблема, что файл поврежден
Задача ещё не решена.
Других решений пока нет …