migration plan

dethfire

Well-known member
I'm planning to migrate next weekend. I've calculated it will take 7-8 hours to import the data. Should I completely close the board or could I just disable registration, pm, posting etc? Thus preserving traffic, won't confuse google and members/visitors can still read.
 
I recommend closing the board.
If you can do the conversation via CLI mode that way import is much faster.
 
It appears cli is in the default php 5.3 package
It's default in them all AFAIK.

Code:
[root@host nginx.d]# rpm -q --requires php-5.6.0-1.el6.x86_64
php-common = 5.6.0-1.el6
php-cli = 5.6.0-1.el6
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(PayloadIsXz) <= 5.2-1
 
You could do the import from a backup and leave the site open for browsing.
Can I install xenforo in a folder off the root directory of the old forum, get it configured, import the data, then delete the old forum files at the root and reupload the xenforo files to the root and it should work?
 
You actually don't need to re-upload anything. All you need to do it move the install directory and then update it in ACP.

For reference, this is how I do a test site based off the live site:

1) Make copy of database & assign DB username/password
2) zip entire XF install directory
3) create new password protected directory
4) unzip XF install into that directory
5) edit config file to reflect copied database
6) go to url, enter ACP, change board path

So for a fresh install it's actually just move the contents, then step 6.

Looking forward to the new PF
 
for the customavatars and attachments, do I need to keep those folders where they are after the import or does the import put them somewhere else and I can delete them?
 
Once the import is completed, the source data is no longer required, including avatars and attachments.
 
anyone know the linux command to move all files/folders in a folder, up a folder level?

found this on stack

mv * .[^.]* ..
 
Top Bottom