I'm sure this has been asked & answered, but I've searched through the forum and peeked at the docs. Sorry for the redundancy.
I just got setup with a new webhost and want to move everything from OldHost to NewHost. Is it just a SQL Export and then Import into a new installation?
Also, it might not make a difference, but the path on the server will be changing. I had CMSMS setup at www.oldhost.com/cms (for testing), and now I'm setting it up at www.newhost.com.
Thanks for the help,
~JK
Changing hosts, need to export CMSMS
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: Changing hosts, need to export CMSMS
I would follow this procedure (off of the top of my head)
- do an sqldump of the entire cmsms database into a file inside your cms directory
- do a tar zcvf backup.tar.gz cms
- transfer backup.tar.gz to the new directory
- tar zxvf backup.tar.gz
- create the database on the new host and set the access to it
- mysql -p < sqlfile
- edit the config.php file as appropriate.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Changing hosts, need to export CMSMS
Okay, thanks all. I do have shell access, and I'm about to give it a shot.