PDA

View Full Version : script dowload file..


jt84
26-06-2006, 10:26
giorno a tutti.mi sapete dire lo script per forzare il download dei file(es. jpg, pdf) facendo comparire la dialog box (apri, salva come, annulla) ed evitare che lo apra nel browser?

andbin
26-06-2006, 11:01
giorno a tutti.mi sapete dire lo script per forzare il download dei file(es. jpg, pdf) facendo comparire la dialog box (apri, salva come, annulla) ed evitare che lo apra nel browser?Guarda ... io per far scaricare i file dal mio sito ho usato del codice PHP in questo modo:
....

$filename = .....;

$basename = basename ($filename);

set_time_limit (0);

header ("Pragma: public");
header ("Expires: 0");
header ("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header ("Cache-Control: public");
header ("Content-Type: application/force-download");
header ("Content-Disposition: attachment; filename=" . $basename . ";");
header ("Content-Description: File Transfer");
header ("Content-Transfer-Encoding: binary");
header ("Content-Length: " . filesize ($filename));

@readfile ($filename);

exit (0);
Non l'hai specificato/richiesto ma comunque una forzatura di questo tipo è possibile solo usando linguaggi server-side, non "roba" client-side come Javascript e simili.

Hardware Upgrade Forum Database Error
Database Error Database error
The Hardware Upgrade Forum database has encountered a problem.

Please try the following:
  • Load the page again by clicking the Refresh button in your web browser.
  • Open the www.hwupgrade.it home page, then try to open another page.
  • Click the Back button to try another link.
The www.hwupgrade.it forum technical staff have been notified of the error, though you may contact them if the problem persists.
 
We apologise for any inconvenience.