http://howfile.com/file/87cd4968/671e4bf5/
my code (that not work):
<?php
if (!defined('RAPIDLEECH')) {
require_once ("index.html");
exit ();
}
class howfile_com extends DownloadClass {
public function Download($link) {
$this->Retrieve($link);
}
public function Retrieve($link) {
$page = $this->GetPage($link);
$cookie = GetCookies($page);
if (!stristr($page, "Click here to download")) html_error("dl link not found!");
if (preg_match('#http://(\w+).howfile.com/downfile/[^"]+#', $page, $dlink)) {
$FileName = cut_str($page, 'File Name: <b>',' </b>');
$this->RedirectDownload($dlink[0], $FileName, $cookie);
exit();
}
exit();
}
}
?>Please help!
Edited by Mohsen.R, 29 January 2012 - 05:28 PM.















