Do you now a possibility to send an http-header that forwards you to an new location (in my case a new file that is supposed to be downloaded) and also suggests a new filename for this certain file (e.g. using Content-Disposition).
I tried this:
<?php
header("Content-Type: application/octet-stream"
header("Location: header("Content-Disposition: attachment; filename=file.exe"
?>
I tried this:
<?php
header("Content-Type: application/octet-stream"
header("Location: header("Content-Disposition: attachment; filename=file.exe"
?>