PDFファイルを強制的にダウンロードするPHPファイルがあり、あるサーバー(Linux)では正常に機能しましたが、サイトを別のサーバー(Win)に移動すると、次のエラーが発生し始めました:
PHP Warning: readfile(./forms/Form.pdf)
[<a href='function.readfile'>function.readfile</a>]:
failed to open stream: No such file or directory in
D:\CustomerData\webspaces\webspace\wwwroot\Form.php
on line 4
PHPファイルにはこれがあります:
<?php
header('Content-disposition: attachment; filename=./forms/Form.pdf');
header('Content-type: application/pdf');
readfile('./forms/Form.pdf');
?>
ありがとう!