| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_ninjaxplorer/include/ |
Upload File : |
<?php
// ensure this file is being included by a parent file
defined('_JEXEC') or die('Restricted access');
/**
* @version $Id: fun_down.php 88 2007-09-18 15:47:39Z soeren $
* @package joomlaXplorer
* @copyright soeren 2007
* @author The joomlaXplorer project (http://joomlacode.org/gf/project/joomlaxplorer/)
* @author The The QuiX project (http://quixplorer.sourceforge.net)
*
* @license
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* Alternatively, the contents of this file may be used under the terms
* of the GNU General Public License Version 2 or later (the "GPL"), in
* which case the provisions of the GPL are applicable instead of
* those above. If you wish to allow use of your version of this file only
* under the terms of the GPL and not to allow others to use
* your version of this file under the MPL, indicate your decision by
* deleting the provisions above and replace them with the notice and
* other provisions required by the GPL. If you do not delete
* the provisions above, a recipient may use your version of this file
* under either the MPL or the GPL."
*
*
*/
//------------------------------------------------------------------------------
function download_item($dir, $item, $unlink=false) { // download file
global $action;
// Security Fix:
$item=basename($item);
while( @ob_end_clean() );
ob_start();
if( nx_isFTPMode() ) {
$abs_item = $dir.'/'.$item;
}
else {
$abs_item = get_abs_item($dir,$item);
if( !strstr( $abs_item, realpath($GLOBALS['home_dir']) ))
$abs_item = realpath($GLOBALS['home_dir']).$abs_item;
}
if(($GLOBALS["permissions"]&01)!=01) show_error($GLOBALS["error_msg"]["accessfunc"]);
if(!$GLOBALS['nx_File']->file_exists($abs_item)) show_error($item.": ".$GLOBALS["error_msg"]["fileexist"]);
if(!get_show_item($dir, $item)) show_error($item.": ".$GLOBALS["error_msg"]["accessfile"]);
if( nx_isFTPMode() ) {
$abs_item = nx_ftp_make_local_copy( $abs_item );
$unlink = true;
}
$browser=id_browser();
header('Content-Type: '.(($browser=='IE' || $browser=='OPERA')?
'application/octetstream':'application/octet-stream'));
header('Expires: '.gmdate('D, d M Y H:i:s').' GMT');
header('Content-Transfer-Encoding: binary');
header('Content-Length: '.filesize(realpath($abs_item)));
//header("Content-Encoding: none");
if($browser=='IE') {
header('Content-Disposition: attachment; filename="'.$item.'"');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
} else {
header('Content-Disposition: attachment; filename="'.$item.'"');
header('Cache-Control: no-cache, must-revalidate');
header('Pragma: no-cache');
}
@set_time_limit( 0 );
@readFileChunked($abs_item);
if( $unlink==true ) {
unlink( $abs_item );
}
ob_end_flush();
nx_exit();
}
//------------------------------------------------------------------------------
?>