non avevo capito che nel link che mettevo

http://www.miosito.it/download.php?file=test.pdf

"file" era il nome della variabile, credevo fosse un comando standard...

A chi puo essere utile posto il codice che ho usato:

Codice PHP:
<?php

$filename 
$_GET['file'];

// required for IE, otherwise Content-disposition is ignored
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression''Off');

// addition by Jorg Weske
$file_extension strtolower(substr(strrchr($filename,"."),1));

if( 
$filename == "" )
{
echo 
"ERROR: download file NOT SPECIFIED. USE force-download.php?file=filepath";
exit;
} elseif ( ! 
file_exists$filename ) )
{
echo 
"ERROR: File not found. USE force-download.php?file=filepath";
exit;
};
switch( 
$file_extension )
{
case 
"pdf"$ctype="application/pdf"; break;
case 
"exe"$ctype="application/octet-stream"; break;
case 
"zip"$ctype="application/zip"; break;
case 
"doc"$ctype="application/msword"; break;
case 
"xls"$ctype="application/vnd.ms-excel"; break;
case 
"ppt"$ctype="application/vnd.ms-powerpoint"; break;
case 
"gif"$ctype="image/gif"; break;
case 
"png"$ctype="image/png"; break;
case 
"jpeg":
case 
"jpg"$ctype="image/jpg"; break;
default: 
$ctype="application/force-download";
}
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: $ctype");
// change, added quotes to allow spaces in filenames, by Rajkumar Singh
header("Content-Disposition: attachment; filename=\"".basename($filename)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($filename));
readfile("$filename");
exit();
?>
Il codice va bene cosi e non va toccato nulla. Ho salvato il codice con il nome forceDownload.php

Creare un collegamento con questa sintassi:

http://www.miosito.it/forceDownload....ile.estensione

Percorso= ha gia in memoria il percorso fino a dove copi il file .php per cui se il file da scaricare si trova in httpdocs/download ed hai copiato il file forceDownload.php in /httpdocs basta scrivere

http://www.miosito.it/forceDownload....ile.estensione