copy data server to server

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    copy data server to server

    heloooo friends anyone plz help me anyone know simple way to copy all data old server to new server any script or soft u know plzz tell me i want to copy my data into new server plz help meeeee

    #2
    Make a backup and move it over.

    Ur host should offer that service. Most do.
    Perfection comes at a cost



    I accept liberty!

    Comment


      #3
      sir hostgrator ask give me 37$ per hour to copy data plzzz help meeee tell another way

      Comment


        #4
        Originally posted by jatt1 View Post
        sir hostgrator ask give me 37$ per hour to copy data plzzz help meeee tell another way
        can i ask you ?
        your old site or data is on shared hosting or a vps or dedicated server
        did you buy shared hosting from hostgator or vps / dedicated server ?

        if both account old and new is on shared hosting you need to make zip or tar all of your data then use copy command or script on new site and it will copy tar or zip files from old to new server



        php code could be some thing like



        Code:
        //original file
        $img = "http://www.site.com/backup.zip"; 
         
        //directory to copy to (must be CHMOD to 777) 
        $copydir = "/home/user/public_html/directory/"; 
         
        $data = file_get_contents($img); 
        $file = fopen($copydir . "backup.zip", "w+"); 
        fputs($file, $data); 
        fclose($file);
        instead of fopen,fread, etc... you can use

        Code:
        $path = "/path/to/save/to/";
        $final_image = $path . $filename_name;
        copy($filename,$final_image);
        Last edited by GiLL; 05.12.10, 15:18.
        left wap stuff

        Comment


          #5
          verr gill i cant extract .tar file in shared hosting of hostgrator plz help me how i can extract it ???

          Comment


            #6
            i am not familiar with hostgator do they allow shell ?
            try this method
            note you need to edit as your link


            Code:
            <?php 
            $mstrng = shell_exec('/path/to/tar -tzvf /local/home/username/public_html/myfiles/myfile.tar.gz');
            echo $mstrng; 
            ?>
            left wap stuff

            Comment


              #7
              no bro this is not working plz help me

              Added after 20 minutes:

              thankssssssss verr g thanku soooooo much
              Last edited by jatt1; 05.12.10, 16:07.

              Comment


                #8
                Nice to see you have done it but i checked there using cpanel legacy file manager you can untar also
                left wap stuff

                Comment


                  #9
                  When you make a backup, you can manually extract each file into a new folder, while maintaining your folder structure. Go into that folder and select all including your index and then zip it. This should be extractable in you new server.
                  Remember that zipping the new folder will give you hell as when you extract, the public html will contain that folder. so go into it and select the files instead.
                  Perfection comes at a cost



                  I accept liberty!

                  Comment

                  Working...
                  X