Skip to content
WJunction - Webmaster Forum

Rapidleech control with curl

Status
Not open for further replies.
I'm try to submit file on rapidleech with posting values in this form

2865df.png


and I tried to use this:


PHP:
$koja = curl_init("http://link");

$kooky = "PHPSESSID=9opvqblp3lovbrfg27t0a8jki6"; // needed for login 


$pppp = urlencode('Transload File');
$po = array(
    'link'=>$imos,
    'referer'=>'',
    'submit'=>$pppp);

curl_setopt($koja, CURLOPT_COOKIE, $kooky);
curl_setopt($koja, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($koja, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($koja, CURLOPT_POST, 1);
curl_setopt($koja, CURLOPT_POSTFIELDS, $po);

curl_exec($koja);


Actually I not sure this is possible, but I think there is a way to use this so if anyone used something like this , I would greatly appreciate help.

When I execute the code, I just get the rapidleech default page
 
Last edited:
Status
Not open for further replies.

About the author

Z
Active Member · Joined
423
Messages
42
Reactions
28
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom