jquery noty のボタンをクリックすると、PHP でダウンロードを開始しようとしています。noty が表示されるはずのときに空白のページが表示され、firebug コンソールにエラーはありません。
var noty_id = noty({
text: 'blah',
type: 'success',
buttons: [
{addClass: 'btn btn-primary', text: 'Download', onClick: function($noty) {
$noty.close();
<?php
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
}}
]
});