A client is running into this problem when they try to hit a page that processes their credit card. This is the only person running into this issue, so I have to assume it's an IE specific problem or a Windows IE issue.
I'm not sure if this is a MIME type problem though. A PHP script shouldn't have its own type, correct? Since it can output binary data or text, it's up to the PHP script to return a Content-Type
header. The only output from this process.php
file is:
header('Content-Type: application/json');
die(json_encode($response));
Apparently this PHP script is called via Ajax. I'm not totally clear on why IE is trying to download it. Any help would be great!
PS: Unsure of IE version, finding out.