別のマシンで、apacheサーバーとファイルを保存するftpサーバーで実行されているphpページがあります。ftpサーバーに外部からアクセスすることはできません。
ユーザーが私のWebページのボタンをクリックすると、phpサーバーがftpサーバーに接続し、ファイルを取得して、[名前を付けて保存]ダイアログを表示し、ユーザーがそれを保存できるようにします。
助けていただければ幸いです、ラドゥ
どうぞどうぞ.. download.php にこれを書いてください
$file = 'location/of/your/file.ext';
readfile($file);
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=".$file);
header("Content-Type: application/zip");
header("Content-Transfer-Encoding: binary");
これはうまくいくはずです:)