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
copy data server to server
Collapse
X
-
Originally posted by jatt1 View Postsir hostgrator ask give me 37$ per hour to copy data plzzz help meeee tell another way
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);
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
-
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
Comment