All pastes #2092844 Raw Edit

Miscellany

public php v1 · immutable
#2092844 ·published 2011-11-02 00:21 UTC
rendered paste body
<?php  $filename = $_GET['filename'];  if (file_exists($filename)) {    header('Content-Description: File Transfer');    header('Content-Type: application/octet-stream');    header('Content-Disposition: attachment; filename='.basename($filename));    header('Content-Transfer-Encoding: binary');    header('Expires: 0');    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');    header('Pragma: public');    header('Content-Length: ' . filesize($filename));    ob_clean();    flush();    readfile($filename);    exit;  } else {    header('Location: http://www.kylemcisaac.com/invaliddoc.php?filename=' . $filename);  }?>