Elvis, can you fix this please?

Jun 26, 2011 23:32 Elvis, can you fix this please?
Elvis, log files won't download in Chrome. The mime-types seem to be screwed up. Thank you!
Jun 27, 2011 03:30
What should the headers be?

This is what they are currently set to:

header("Content-Length: ".$size. "bytes");
header("Content-Description: WinBolo Log File");
header("Content-Type: application/winbolologfile");
header("Content-Disposition: attachment; filename=\"$filename\"");
Jun 27, 2011 07:14
and i thought it was just mah computer....
Jun 27, 2011 14:05
Any difference between content-length and the actual final download file size causes a "interruption" error in the latest version of Chrome right now, but they're switching it back in the next release. Log downloads work in Chrome dev 14.0.797.0.

http://code.google.com/p/chromium/issues/detail?id=85549

My guess is:
header("Content-Length: ".$size. "bytes");
should be
header('Content-Length: '.$size);
Jun 28, 2011 04:07
Jul 01, 2011 15:15
Updated. Did that help?
Jul 02, 2011 02:50
I still get an "interrupted" :(