Размер файла: 1.52Kb
<?php
/*
=============================================
Движок: SHCMS Engine
=============================================
Название файла: Обменник - Скачивание файла с форума
=============================================
Official website: http://shcms.ru
=============================================
*/
define('SHCMS', true);
include_once'../system/inc/basic_settings.php';
$file = htmlspecialchars($_GET['file']);
$file = str_replace('../','',$file);
$file = str_replace('./','',$file);
$filename = '../system/thumbs/'.$file.'';
if($file == '.htaccess' || $file == 'index.php'){
errors(Lang::get('Ошибка! Файл входит в состав запрещеных!'));
}else{
if (file_exists($filename)) {
$list = $filename;
$name = explode("/",$list);
$name = $name[count($name)-1];
header('Content-type: text/plain');
header("Content-disposition: attachment; filename=$name");
header('Content-Description: File Transfer');
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($list));
ob_clean();
flush();
readfile($list);
} else {
errors(Lang::get('Файла не существует!'));
}
}
?>