SoFunction
Updated on 2025-04-03

IE php code on forced download of files

Author: xling
First look at the download of the xls file:

//header("Cache-Control: public");
header('content-type:application/-excel');
header("Content-Disposition:attachment; filename=");

If you don’t add the first sentence, it will pop up: Internet Explorer cannot download **.php (from ** website). Internet Explorer cannot open the internet website. The requested website is unavailable or cannot be found. Please try again later.

And even the name is not the name set:, but **.php, just add the first sentence to OK.

When I was watching rar, gif, etc., I passed without adding the first sentence, and the error box did not pop up!

If it is a gif or other image, Content-Disposition:attachment; will force a save dialog box to pop up. If omitted or inline, it will be displayed directly on the web page.

The above is what I developed using a stupid method (I can't find the available documents, so I had to try them one by one).

Below is the value that Content-type should take.

switch( $file_extension ) {
case "pdf": $ctype="application/pdf"; break;
case "exe": $ctype="application/octet-stream"; break;
case "zip": $ctype="application/zip"; break;
case "doc": $ctype="application/msword"; break;
case "xls": $ctype="application/-excel"; break;
case "ppt": $ctype="application/-powerpoint"; break;
case "gif": $ctype="image/gif"; break;
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
case "mp3": $ctype="audio/mpeg"; break;
case "wav": $ctype="audio/x-wav"; break;
case "mpeg":
case "mpg":
case "mpe": $ctype="video/mpeg"; break;
case "mov": $ctype="video/quicktime"; break;
case "avi": $ctype="video/x-msvideo"; break;

//The following are for extensions that shouldn't be downloaded (sensitive stuff, like php files)
case "php":
case "htm":
case "html":
case "txt": die("<b>Cannot be used for ". $file_extension ." files!</b>"); break;

default: $ctype="application/force-download";
}