__________________ Best Hosting , Quality Logos Hire Freelancer OutsourceCoders.com, OutsourceCoder.com, ClickASport.com, ClickACoder.com, ClickAScript.com, PhotoshopPlanet.com, FreelanceWorx.com, PlanetCoders.com, ShopALogo.com - SITES FOR SALE - PM for inquiries
I prefer tar and gzip the directory I want to move, dump the databases and ftp the files to the new account. But you need SSH to do that. But it's the most easy and quick way I found.
Yep, you can move sites between hosts regardless of control panels, but if both the old host and new host are using the same type of control panel there may be a tool that can copy the site and its settings in its entirety.
Going from a Cpanel host to a Cpanel host can be very easy. The receiving host will have access to a site transfer utility in WHM that can transfer the account over, including all email and database settings.
Hosting recommendations are probably best for another thread. I've been recommended Polurnet.com to my clients lately.
__________________
Follow RJ on Twitter http://twitter.com/domainbuyer
We at polurnet.com free site transfering facility to all our clients.Feel free to ask more questions through helpdesk,Live support,email and msn{haris@polurnet.com}.
Thanks
Best Regards,Haris
This is total offtopic , that dude asked for help transfering why u advertising ur stuff here ur not helping at all, and he didnt mention anywhere that he is ur client so why advertise any moderator here please remove his post , cause i think advertising like that hurts all the competitors out there and they will also start advertising.
If you want to transfer data there is ftp to ftp tool which i use to transfer files from one host to other as i have no choice but to shift everything my free offer expires , do google for ftp to ftp transfer via servers u will find what u need, if cant i will transfer ur data for u if u want.
RJ and Productive, Both my old and new host uses new CPanel with WHM. So do you know the exact tool I must use in these to transfer? is there a tutorial for these ?
Thanks killerid for your tip and offer. I was wondering if you can just teach me? since I want to do it myself as I may have several various sites I need to transfer
Pakinium, thanks for your offer. I have looked into your site. I will PM you if Im not satisfied with my current host.
THanks guys
__________________ Best Hosting , Quality Logos Hire Freelancer OutsourceCoders.com, OutsourceCoder.com, ClickASport.com, ClickACoder.com, ClickAScript.com, PhotoshopPlanet.com, FreelanceWorx.com, PlanetCoders.com, ShopALogo.com - SITES FOR SALE - PM for inquiries
RJ and Productive, Both my old and new host uses new CPanel with WHM. So do you know the exact tool I must use in these to transfer? is there a tutorial for these ?
Yep, the utility is under the "Transfers" section in WHM, the actual link is titled "Copy an account from another server with account password". Only the root user will have access to do this, so if you don't own the server yourself you'll have to request that they setup/copy the account over.
With this tool, you can copy an account from any other Cpanel server as long as you have the username and password of the account.
__________________
Follow RJ on Twitter http://twitter.com/domainbuyer
Ok RJ thanks.. But Im just a reseller but I have access to my account.. But with that tool is it possible for as a reseller to transfer it myself without the help of the server admin.?
Muchas gracias!
As dgaussin said, although I don't use ftp (and neither gzip, sometimes). Yesterday I moved a few sites in no time.
Wow, I bet its just a breeze on your part! How di you do that? can you teach me?
__________________ Best Hosting , Quality Logos Hire Freelancer OutsourceCoders.com, OutsourceCoder.com, ClickASport.com, ClickACoder.com, ClickAScript.com, PhotoshopPlanet.com, FreelanceWorx.com, PlanetCoders.com, ShopALogo.com - SITES FOR SALE - PM for inquiries
Wow, I bet its just a breeze on your part! How di you do that? can you teach me?
I'm not a linux guru, but I can explain what I do. It needs SSH access to both servers.
1- Go to the directory you want to copy:
eg: cd /var/www/html/yoursite/
2- (If you don't use mysql skip this step):
mysqldump --opt yourDB -u yourUser -p > yourSite.sql
3- Compress the directory to one file:
tar zcf yourSite.tar.gz *
(sometimes, depending of the type of files and directories to compress, and the speed between the servers, is better not to compress the file).
4- Send it to your other account:
scp yourSite.tar.gz user@hostname:/path/to/directory/
(if you have permission to send it to that directory directly).
5- Go to your other account, go to the directory and uncompress the file:
tar zxf yourSite.tar.gz
6- Copy sql file to mysql:
mysql yourDB -u yourUser -p < yourSite.sql
(that DB should exist before using this command).
7- And if you've set up Apache and DNS before, it's finished.
Of course, there are others ways of doing it, and there are other options for those commands that may be a good idea to use.
Ok I wil try that. Thanks for taking time to post it.
__________________ Best Hosting , Quality Logos Hire Freelancer OutsourceCoders.com, OutsourceCoder.com, ClickASport.com, ClickACoder.com, ClickAScript.com, PhotoshopPlanet.com, FreelanceWorx.com, PlanetCoders.com, ShopALogo.com - SITES FOR SALE - PM for inquiries