I\'ve been using a PHP script to export data from my database (mysql) to a XLS file.
While the file export process is working fine on Firefox and IE.
I am g
I had this same problem. However appearing only very rarely. Cause was similar but not quite the same.
Incorrect
header("Content-Disposition: attachment; filename=$filename");
Correct
header("Content-Disposition: attachment; filename=\"$filename\"");
$filename sometimes contained spaces resulting in mentionec Chrome error.