Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/04/2007, 13:38
Avatar de yoanht
yoanht
 
Fecha de Ingreso: marzo-2006
Mensajes: 7
Antigüedad: 18 años, 1 mes
Puntos: 0
Pregunta Notificador de Ficheros Descargado

Hola... necesito que alguien me ayude a identificar si un fichero fue descargado o no.. yo uso este código pero no me ejecuta la condicion

$NameFile = basename($file);
header("Content-type: application/force-download");
header("Content-Transfer-Encoding: Binary");
header("Content-length: ".filesize($file));
header("Content-disposition: attachment; filename=".$NameFile."\n");


if(readfile($file))
{
//acciones a realizar
}

/* esa condicion no se me ejecuta, nunca entra*/


Gracias