Up to Android 3.0, a trivial (and correctly handled by all platforms) php code like the one following is not handled by android browsers that seem to ignore the http header generated dynamically.

The android browser doesn't see both filename and the mime-type which is handled by an app i have developed and starts a download.

To get the desired behavior, i have to create a regular reset.dat file and then redirect. I really cant figure out why, can someone help ?

Here you go:

$buffer .= "Hello World";
header ("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header('Content-Description: File Transfer');
header('Content-Type: application/datfile');
header('Content-Length: '.strlen($buffer));
header('Content-Disposition: attachment; filename="reset.dat"');
echo $buffer;

Thanks in advance for any help.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.