Home > Article > Backend Development > Why Is My PDF Download Not Working?
Problem:
Despite implementing header configurations, the application fails to open a PDF upon user click. The headers currently in use are:
<code class="php">$filename = './pdf/jobs/pdffile.pdf'; $url_download = BASE_URL . RELATIVE_PATH . $filename; header("Content-type:application/pdf"); header("Content-Disposition:inline;filename='$filename'"); readfile("downloaded.pdf");</code>
Solution:
To resolve this issue, it is necessary to adjust the header configurations to the following:
<code class="php">header("Content-type:application/pdf"); // Set the file disposition to attachment for download header("Content-Disposition:attachment;filename=\"downloaded.pdf\""); // Read the actual PDF file from its source readfile("original.pdf");</code>
Additional Notes:
The above is the detailed content of Why Is My PDF Download Not Working?. For more information, please follow other related articles on the PHP Chinese website!