I am trying to download the file with http header but it will not download completly. The uploaded file size is 1 MB
and the file download with my code 336 byte
size only.
I am trying with below code
$attachment_location= "filename";
$filePath= "$siteURL/foldername/filename";
$file_content = file_get_contents($filePath);
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$attachment_location\"");
echo $file_content;