##
isLoggedIn())
{
header("X-Sendfile: $path_to_somefile");
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$somefile\"");
exit;
}
?>
Permission denied
Login first!
####
# enable xsendfile
XSendFile On
XSendFilePath C:/Path/To/Files/
####
my $file = "C:/Patch to file/FiletoSend.mp4";
my $filesize = -s $file;
print "Content-Type:video/mp4\n";
# remove comment below to make file download. Add the comment to stream data to player
#print "Content-Disposition: attachment; filename=\"FiletoSend.mp4\"\n";
print "Content-Length: $filesize\n";
print "X-Sendfile: $file";
print "\n\n";
exit;