1
hi,
In debaser, if you click on the link blah blahblah/modules/debaser/getfile.php?id=blah download prompt will display and downloading will start.
Is there a way to edit the file getfile.php to display a Message (you are downling Blah file frm Blah Website) followerd by download prompt after couple of seconds?
header("Content-Type: audio/mpeg; name="".basename($filename).""");
header("Content-Length: ".filesize($filename)."n");
header("Content-Disposition: attachment;
filename="".basename($newfilename).""");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
I believe it can be changed somewhere in the above codes.
Thankyou.