I have a button on another page linked to call the php download script.
$totalpath = "../".substr($path.$expath,0,-1);
$size = filesize($totalpath);
header("Content-type: application/octet-stream");
header("Content-Transfer-Encoding: Binary");
header('Content-Disposition: attachment; filename="$filename"');
header('Content-Length: '.$size);
readfile($totalpath);
In the browser download manager I get "Starting..." but no progress indicator. I've chekced $size and it has 3994958 in it.
Weird....help please