Ver Mensaje Individual
  #21 (permalink)  
Antiguo 25/02/2015, 12:50
newnovato
 
Fecha de Ingreso: marzo-2009
Mensajes: 117
Antigüedad: 15 años, 1 mes
Puntos: 2
Respuesta: formato para archivos

tengo este codigo pero me dice que el archivo no existe entiendo que tengo que colocar la ruta del archivo en ($root = "archivos/";) pero ya no se que ruta colocar estoy utilizando un hosting me imagino que tendria que ser public_html/carpeta


<?php

if (!isset($_GET['file']) || empty($_GET['file'])) {
exit();
}
$root = "archivos/";
$file = basename($_GET['file']);
$path = $root.$file;
$type = '';

if (is_file($path)) {
$size = filesize($path);
if (function_exists('mime_content_type')) {
$type = mime_content_type($path);
} else if (function_exists('finfo_file')) {
$info = finfo_open(FILEINFO_MIME);
$type = finfo_file($info, $path);
finfo_close($info);
}
if ($type == '') {
$type = "application/force-download";
}
// Definir headers
header("Content-Type: $type");
header("Content-Disposition: attachment; filename=$file");
header("Content-Transfer-Encoding: binary");
header("Content-Length: " . $size);
// Descargar archivo
readfile($path);
} else {
die("El archivo no existe.");
}

?>