Просмотр файла forum/loading.php

Размер файла: 1.5Kb
  1. <?php
  2. /*
  3. =============================================
  4. Движок: SHCMS Engine
  5. =============================================
  6. Название файла: Обменник - Скачивание файла с форума
  7. =============================================
  8. Official website: http://shcms.ru
  9. =============================================
  10. */
  11. define('SHCMS', true);
  12. include_once'../system/inc/basic_settings.php';
  13.  
  14. $file = htmlspecialchars($_GET['file']);
  15. $file = str_replace('../','',$file);
  16. $file = str_replace('./','',$file);
  17. $filename = '../system/thumbs/'.$file.'';
  18.  
  19. if($file == '.htaccess' || $file == 'index.php'){
  20. errors('Ошибка! Файл входит в состав запрещеных!');
  21. }else{
  22. if (file_exists($filename)) {
  23. $list = $filename;
  24. $name = explode("/",$list);
  25. $name = $name[count($name)-1];
  26. header('Content-type: text/plain');
  27. header("Content-disposition: attachment; filename=$name");
  28. header('Content-Description: File Transfer');
  29. header('Content-Transfer-Encoding: binary');
  30. header('Expires: 0');
  31. header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  32. header('Pragma: public');
  33. header('Content-Length: ' . filesize($list));
  34. ob_clean();
  35. flush();
  36. readfile($list);
  37. } else {
  38. errors('Файла не существует!');
  39. }
  40. }
  41.  
  42.  
  43.  
  44.  
  45. ?>