Help with a plugin! Ayuda!

Status
Not open for further replies.

phoenixjp

Member
7
2010
0
0
Hi
I need help with a hosting download plugin.
The hosting is Profitupload.com

Buenas,
Necesito ayuda con un plugin de descarga.
El hosting es Profitupload.com

Tengo este plugin:
I have this plugin:

Code:
<?php

if (!defined('RAPIDLEECH')) {
    require_once("index.html");
    exit;
}

class profitupload_com extends DownloadClass {

    public function Download($link) {
        global $premium_acc;
        if (($_REQUEST ["premium_acc"] == "on" && $_REQUEST ["premium_user"] && $_REQUEST ["premium_pass"]) || ($_REQUEST ["premium_acc"] == "on" && $premium_acc ["profitupload_com"] ["user"] && $premium_acc ["profitupload_com"] ["pass"])) {
            $this->DownloadPremium($link);
        } else {
            $this->DownloadFree($link);
        }
    }
    private function DownloadFree($link){
        $page=$this->GetPage($link);
        is_present($page, "El archivo que que buscas no existe o ha sido eliminado.","El archivo que que buscas no existe o ha sido eliminado.");
        $Cookies=GetCookies($page);
        insert_timer(18);
        if (!preg_match('#http:\/\/.*\/get\/[^\'"]+#', $page,$getlink)){
            html_error("Error 0x01: Plugin is out of date");
        }
        $page=$this->GetPage($getlink[0],$Cookies,0,$link);
        $post=array();
        $post['task']="download";
        $post['submit.x']="114";
        $post['submit.y']="33";
        $Url=parse_url($getlink[0]);
        $FileName=basename($Url['path']);
        $this->RedirectDownload($getlink[0], $FileName, $Cookies, $post,$getlink[0]);
        exit;
    }
    private function DownloadPremium($link){
        html_error("Not Support Now");
    }
/*
 * by vdhdevil Jan-08-2011
 */
}

?>

Pero no funciona
But don't works.

Puede alguien repararlo?
Can someone fix it?

Descargarlo desde este link:
The plugin to download:

http://www.profitupload.com/files/mP4rFQ1295102467.html

Gracias!
Thanks!
 
2 comments
Status
Not open for further replies.
Back
Top