Menu

How to fix exe_rename

exe files are automatically renamed by Google. To fix that you can follow the two simple steps.

In index.php file:
Find the line:
$att_file .= urlencode($item1["attachment"][$i]["filename"]);
after that add following line
$att_file = ereg_replace(".exe_renamed", ".exe", $att_file);

In dl.php
Find the line:
$acn = isset($_REQUEST["n"])? $_REQUEST["n"] : 0;
after that add following line
$fname = ereg_replace(".exe_renamed", ".exe", $fname);

It will make EXE_RENAMES to EXE

Posted by R A Y U B 2005-09-29

Log in to post a comment.