ダウンロードが機能しない。
html,php共に初心者です。教えて頂けますか?
ダウンロードボタンを押すと、以下のphpファイルを開きダウンロードを行う様にしたのですが、mac safari ではダウンロード出来たのですが、
windows IE では ダウンロード出来ませんでした。
ファイルの構成は以下です。
/www/category/contentsList.php <-ダウンロードボタンがあります
/www/category/downloader.php <-ダウンロードボタンを押すと呼ばれます。
/contentDirectory/ダウンロードするファイル.zip
downloader.phpの記述は以下のみです。
<?php
$serverDirectory = dirname($_SERVER['DOCUMENT_ROOT']);
$contentDirectory = $_POST['contentDirectory'];
$fileName = $_POST['fileName'];
$filePath = $serverDirectory.'/'.$contentDirectory.'/'.$fileName;
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$fileName.'"');
header('Content-Length: '.filesize($filePath));
readfile($filePath);
?>
どうすれば良いでしょうか?
大変申し訳ありません。よろしくお願いします。
お礼
ありがとうございます。PCからもダメでした。