Save your time with RapidLeech auto upload.

Status
Not open for further replies.

hq320

Active Member
142
2010
31
10
So you use rapidleech and want auto upload a bit faster.

First when i upload with rapidleech i open auul.php then i choose hosts where to upload my stuff and then file.


0deb4e9693.jpg
imXcg9R.jpg


This take a lot of time to sort my hosts out where to upload.
:O
I takes like at least 1 min to search hosts i like.


What to do ?
Let rapidleech choose hosts for you.

How ?

First Download and backup your "hosts/upload/" folder.
Then delete from "hosts/upload/" all hosts you don't never use.
Example i keep :
f66a468ba5.jpg
JQJQaoz.jpg


Open auul.php


Find (~365 line) :


PHP:
<td><input type="checkbox" name="hosts[]" value="<?php echo $upl; ?>" /></td>
Replace with :
PHP:
<td><input type="checkbox" name="hosts[]" checked value="<?php echo $upl; ?>" /></td>
So when you are going next time to use auto upload you have to choos only file you want to upload.

7d98f16432.jpg
I1VhwBk.jpg



-Sorry for my bad English-
 
Last edited:
18 comments
Just in case if anyone knows...is there any way to "check" only the selected hosts? e.g. In a situation like I have rapidshare plugin, which I don't use for everything, but I would like to keep it there!
 
Its possible just a bit coding.
Will take a look on your request as soon i get some free time :)

Open auul.php

Find (~365 line) :


Code:
<td><input type="checkbox" name="hosts[]" value="<?php echo $upl; ?>" /></td>


Replace with this:

Code:
<td><input type="checkbox" name="hosts[]" <?php if( $upl == "rapidshare.com"){echo 'value="'.$upl.'"';}else{ echo 'checked value="'.$upl.'"';}?>' /></td>
You can edit "rapidshare.com" to "whatever.host.com" ;)


Let me know is this working or not, thanks.
 
Last edited:
Its possible just a bit coding.
Will take a look on your request as soon i get some free time :)

Open auul.php

Find (~365 line) :


Code:
<td><input type="checkbox" name="hosts[]" value="<?php echo $upl; ?>" /></td>


Replace with this:

Code:
<td><input type="checkbox" name="hosts[]" <?php if( $upl == "rapidshare.com"){echo 'value="'.$upl.'"';}else{ echo 'checked value="'.$upl.'"';}?>' /></td>
You can edit "rapidshare.com" to "whatever.host.com" ;)


Let me know is this working or not, thanks.
Tested...it checked all! If you can sort it out, it would really be helpful :)
 
if you add rapidshare.com files to your "hosts/upload" folder it should be uncheked.

42c6c9d268.jpg


This is SS when i open my auul.php
 
if you add rapidshare.com files to your "hosts/upload" folder it should be uncheked.

42c6c9d268.jpg


This is SS when i open my auul.php
Thanks :)

It was "rapidshare_member" for me, so had to change the code a bit. i put it blindly first time. So thanks to your second screenshot, sorted it out. Works fine, thanks all to you for the idea & help :)
 
Thanks for this :)

even though it is old, but it is pure GOLD..

"Old is gold" :)

=======

if we need to untick rapidshare means, we use this
PHP:
<td><input type="checkbox" name="hosts[]" <?php if( $upl == "rapidshare.com"){echo 'value="'.$upl.'"';}else{ echo 'checked value="'.$upl.'"';}?>' /></td>

if i want to untick 2 or more filehost means.....?? what to do..?????????
eg: untick rapidshare, mediafire, zippyshare
 
Last edited:
thanks a lot for this
the problem is now, i want the links to be sorted when i make autoupload

i mean in the text file"myupload.txt" i want the links sorted by filehost
any help ?
 
Hi. Open upload.php
Find :
PHP:
<?php
if (isset($_GET['auul'])) {
?><script type="text/javascript">parent.nextlink<?php echo $_GET['auul']; ?>();</script><?php
    // Write links to a file
    $file = $options['download_dir']."myuploads.txt";    // Obviously it was a mistake not making it a variable earlier
    if (!$options['myuploads_disable']) {
        if (!$_GET['save_style'] && $_GET['save_style'] !== lang(51)) {
            $dash = "";
            for ($i=0;$i<=80;$i++) $dash.="=";
            write_file($file, $lname."\r\n".$dash."\r\n".$download_link."\r\n\r\n", 0);
        } else {
            $save_style = base64_decode($_GET['save_style']);
            $save_style = str_replace('{link}',$download_link,$save_style);
            $save_style = str_replace('{name}',$lname,$save_style);
            write_file($file, $save_style."\r\n", 0);
        }
    }
}
?>

Replace with:

PHP:
<?php
if (isset($_GET['auul'])) {
?><script type="text/javascript">parent.nextlink<?php echo $_GET['auul']; ?>();</script><?php
    // Write links to a file

$hostfullname = $_REQUEST['uploaded'];
    
    $file = $options['download_dir']."$hostfullname.txt";    // Obviously it was a mistake not making it a variable earlier
    if (!$options['myuploads_disable']) {
        if (!$_GET['save_style'] && $_GET['save_style'] !== lang(51)) {
            $dash = "";
            for ($i=0;$i<=80;$i++) $dash.="=";
            write_file($file, $lname."\r\n".$dash."\r\n".$download_link."\r\n\r\n", 0);
        } else {
            $save_style = base64_decode($_GET['save_style']);
            $save_style = str_replace('{link}',$download_link,$save_style);
            $save_style = str_replace('{name}',$lname,$save_style);
            write_file($file, $save_style."\r\n", 0);
        }
    }
}
?>


---------- Post added at 01:13 PM ---------- Previous post was at 12:13 PM ----------

Thanks for this :)

even though it is old, but it is pure GOLD..

"Old is gold" :)

=======

if we need to untick rapidshare means, we use this
PHP:
<td><input type="checkbox" name="hosts[]" <?php if( $upl == "rapidshare.com"){echo 'value="'.$upl.'"';}else{ echo 'checked value="'.$upl.'"';}?>' /></td>
if i want to untick 2 or more filehost means.....?? what to do..?????????
eg: untick rapidshare, mediafire, zippyshare


PHP:
<td><input type="checkbox" name="hosts[]" <?php if( $upl == "jumbofiles.com_member"){echo 'value="'.$upl.'"';}  elseif( $upl == "mediafire.com_member"){echo 'value="'.$upl.'"';} else{ echo 'checked value="'.$upl.'"';}?>' /></td>

add more : elseif( $upl == "Yourhosts.com_member"){echo 'value="'.$upl.'"';}
If you need more hosts to untick.
 
Thanks for two filehosts untick, it worked :)

for link sorting, i like your clever idea,
what you done is creating seperate file for filehosts,
if we uploaded to 3 filehosts means, 3 text files with filehostname.txt is created and all links are there.


is it possibe to create table (.txt is not able to create table, so we have to use .html or .php i think)
[slide]http://s7.postimage.org/dz8z8xlvv/image.png[/slide]

if we stored the filename and link like above in table means, we can sort it by .js
main advantage is we can easily copy all links without copying filename..

Offopic:
Zoom uploader link sorting is really cool, we need something like that..?
or any link sorting script integration.
 
Last edited:
Status
Not open for further replies.
Back
Top