Results 1 to 13 of 13

vB 4 migration Issue

This is a discussion on vB 4 migration Issue within the General Discussion forums, part of the vBSEO SEO Plugin category; Hi all, I'm going to be moving my forums from domain.com to forums.domain.com vB 4 is already installed on forums.domain.com, ...

  1. #1
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1

    vB 4 migration Issue

    Hi all, I'm going to be moving my forums from domain.com to forums.domain.com

    vB 4 is already installed on forums.domain.com, and I have just abandoned ImpEx after I am informed, by Mert, that thread IDs will change - causing havoc.

    I was originally going to upgrade via ImpEx to remove the unwanted (non-vB) tables from modifications and hacks etc.

    Any ideas?

  2. #2
    Junior Member
    Real Name
    Bob
    Join Date
    Sep 2007
    Posts
    25
    Liked
    0 times
    Can you not just change the folder that forum.domain.com points to instead of moving anything? In other words point it to your old domain.com folder on the server and just upgrade the existing installation of vbulletin.

  3. #3
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    The forum files are in the web root, public_html .

  4. #4
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    No one else to offer migration support? How should I deal with htaccess 301s? Obviously, I want to keep Google and other search engines on my side as possible through the migration.

  5. #5
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    as suggested, physically move the folder into the new location.

    You can set 301 redirects, but it really depends on what you end up doing in root. You can't just redirect EVERYTHING from root to forums. subdomain, so there's needs to be more information provided on what's in root, and if you have a generic idetifier (like forums folder) that we can help you direct all.

    Personally, I would suggest highly against doing this. Keeping vb in root, you can build everthing off of it, and with the power of vbseo, you can fake it to not have your forum be your homepage, and you can keep your fourms/threads in their current positions and not have any 301s to worry about in the first place.

  6. #6
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    The forum files are being physically moved. In the root, there will be a custom CMS using some sort of SEO, here is acopy of the .htaccess there:

    RewriteEngine On
    RewriteRule ^([A-Za-z\-/]+)$ index.php?do=$1 [QSA]
    RewriteCond %{SERVER_PORT} 80
    RewriteCond %{REQUEST_URI} "/clients/"
    RewriteRule (.*) $1 [L]
    I am assuming 301 redirects will work for the forums? The forums are in the root themselves, so, hence:

    orginal domain -> forums.domain.com
    So for one of the forums:
    /news-announcements/ -> forums.domain.com/news-announcements/
    etc - how would I achieve this in htaccess?

  7. #7
    Senior Member
    Real Name
    Carlos
    Join Date
    May 2008
    Location
    California
    Posts
    188
    Liked
    2 times
    Quote Originally Posted by ct2k7 View Post
    The forum files are in the web root, public_html .
    Just change the folder where your current forum is hosted. And in ACP, change the url in which vbulletin READS your forum as, along with changing the image paths in style manager. Easy and simple as that.

    I've done it before. When I changed the folder, the only things that weren't working is image filepaths. Which I had to go through ACP fixing.

    Before renaming the folder, I had the server read forums.site.com on a certain folder - which is in public html root. Once done, all I did was erase the physical folder, as the server recognizes where the domain points in root. With this in mind, I was able to rename the old folder without hassle.

  8. #8
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    Quote Originally Posted by Carlos SEO View Post
    Just change the folder where your current forum is hosted. And in ACP, change the url in which vbulletin READS your forum as, along with changing the image paths in style manager. Easy and simple as that.

    I've done it before. When I changed the folder, the only things that weren't working is image filepaths. Which I had to go through ACP fixing.
    There's a lot more than just the forum files in the root, that's the issue - again, how does this help?

    All I'm doing is moving the vB 4 files to a folder called forum for ths subdomain, forums.domain.com, what I need to sort out is the 404s SE are going to get.

  9. #9
    Senior Member
    Real Name
    Carlos
    Join Date
    May 2008
    Location
    California
    Posts
    188
    Liked
    2 times
    Oh. :( Alright. I wasn't any help.

  10. #10
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    No worries Carlos, gracias.

  11. #11
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    I've flagged this thread for oleg to provide some rewrite help.

  12. #12
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,742
    Liked
    168 times
    The forum files are being physically moved. In the root, there will be a custom CMS using some sort of SEO, here is acopy of the .htaccess there:
    Looks like your custom CMS already does rewrite all URLs in domain root, so the only option would be to add one domain per subforum to redirect them, right after "RewriteEngine on" line, like:
    RewriteRule ^(news-announcements/.*) http://forums.domain.com/$1 [L,R=301]
    RewriteRule ^(other-subforum/.*) http://forums.domain.com/$1 [L,R=301]

  13. #13
    Senior Member
    Real Name
    Shamil
    Join Date
    Feb 2008
    Location
    In my box :)
    Posts
    152
    Liked
    5 times
    Blog Entries
    1
    Thanks for confirming my limited knowledge (of htaccess and 301 and this)

Similar Threads

  1. Server Migration - Issues
    By IdahoSpud in forum General Discussion
    Replies: 8
    Last Post: 12-02-2009, 05:29 PM
  2. Server Migration Issues?
    By sovaward in forum Troubleshooting
    Replies: 5
    Last Post: 11-23-2008, 10:00 PM
  3. Server Migration Issues
    By snotek in forum Troubleshooting
    Replies: 2
    Last Post: 11-01-2008, 09:50 PM
  4. Migration Question
    By Shockwave in forum Pre-Sales Questions
    Replies: 2
    Last Post: 08-05-2008, 12:03 PM
  5. Domain migration
    By Stefano Virgilli in forum Troubleshooting
    Replies: 2
    Last Post: 09-19-2007, 10:04 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •