Path : /var/www/html/main/admin/tinymce/plugins/filemanager/
File Upload :
Current File : /var/www/html/main/admin/tinymce/plugins/filemanager/force_download.php

<?php 
$path=$_POST['path'];
$name=$_POST['name'];

header('Pragma: private');
header('Cache-control: private, must-revalidate');
header("Content-Type: application/octet-stream");
header("Content-Length: " .(string)(filesize($path)) );
header('Content-Disposition: attachment; filename="'.($name).'"');
readfile($path);
exit;
?>