our host company has set up and configured XSendfile and we have tested it as working.
We have configured the following in the apache config:
XSendFile on
XSendFilePath /home/beef/shared/
If I do a test XSendfile script from
/home/beef/public_html/test.php
This script can successfully serve a file in shared dir. All good so far.
Now we want to try to run this script from
/home/julius/public_html
From this directory, if I do a force-download script:
$file = "/home/beef/shared/pic222.jpg";
header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename="pic222.jpg"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate,post-check=0, pre-check=0');
header("Cache-Control: private",false);
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
This works fine and sends the file with no problems. So it does not SEEM to be a permissions issue (though I could be wrong this is not my specialism)
But from the same directory, if I do an XSendfile script (the same script that was working in the other directory):
$file = "/home/beef/shared/pic222.jpg";
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"pic222.jpg\"");
header("X-Sendfile: ".$file);
exit;
It just sends a 0kb file, and no errors.
Does anyone have any ideas why this may not be working?
Thanks for reading, your help is appreciated.