Convert SWF Internal Version Number from 6 to 7
More Info
View This Post

PHP Code:
//upload file is $userfile
$fp=fopen($userfile,"rb");
$data=fread($fp,filesize($userfile));
fclose($fp);
$data[3]=chr(7); //this is the only change - very simple...
header("Content-Type: application/octet-stream; name=".$userfile_name);
header("Content-length: " . $userfile_size);
header("Content-Transfer-Encoding: binary");
header("Accept-Ranges: none");
header("Content-Disposition: attachment; filename=".$userfile_name."\n");
echo $data;