Found this php script to change MD5 hash on RL.


Code: 
<title>Change md5 Hash</title>
<link href="templates/plugmod/styles/rl_style_pm.css" rel="stylesheet" type="text/css" />
<?
$path = "files";
if (isset($_GET['file'])) {
    $handle = fopen("$path/".$_GET['file']."", 'a+');

    if ($handle) {
        fwrite($handle, '0');
    } else {
        echo "<br />Error!<br />";
    }
    fclose($handle);
}
echo "<center><a href='index.php'>Back to Rapidleech</a><br><br><b>Click to change the md5 Hash</b> (In Folder: $path)<br><br><br></center> ";
$handle = opendir ($path);
while (false !== ($file = readdir ($handle))){
    if ($file != "."){
        if ($file != ".."){
            if ($file != "index.html") {          
                $byte = filesize($path."/".$file);
                $byte = md5($byte);
                if (! is_dir($path."/".$file)) {
                    echo "<center><b><a href='md5.php?file=$file'>Change md5</a></B> of $file md5 Hash [ <b>$byte</b> ]<br/></center>";
                }
            }
        }
    }
}
closedir($handle);
?>

But it doesn't seem to work for me. Getting this error..

Code: 
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@*****.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Please someone help.
RippeR Reviewed by RippeR on . Change MD5 hash in Rapidleech Found this php script to change MD5 hash on RL. But it doesn't seem to work for me. Getting this error.. Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Rating: 5