20 lines
517 B
PHP
20 lines
517 B
PHP
<?php
|
|
|
|
$file = '/var/pistar-keeper/pistar-keeper.log';
|
|
|
|
if (file_exists($file)) {
|
|
header('Content-Description: File Transfer');
|
|
header('Content-Type: application/octet-stream');
|
|
header('Content-Disposition: attachment; filename="'.basename($file). '"');
|
|
header('Content-Transfer-Encoding: binary');
|
|
header('Expires: 0');
|
|
header('Cache-Control: must-revalidate');
|
|
header('Pragma: public');
|
|
header('Content-Length: ' . filesize($file));
|
|
flush();
|
|
readfile($file);
|
|
exit;
|
|
}
|
|
|
|
?>
|