Page 1 of 3 1 2 3 LastLast
Results 1 to 15 of 31

From phpBB3 + phpBBSEO to vB4 Suite + vBseo

This is a discussion on From phpBB3 + phpBBSEO to vB4 Suite + vBseo within the Pre-Sales Questions forums, part of the Announcements & Pre-Sales category; Hi all I have some communities powered by phpBB3 plus phpBBSEO plugin I need to migrate to vB4 Suite plus ...

  1. #1
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times

    From phpBB3 + phpBBSEO to vB4 Suite + vBseo

    Hi all

    I have some communities powered by phpBB3 plus phpBBSEO plugin
    I need to migrate to vB4 Suite plus VBSeo?

    It's possible to save my actual indexing with google? How?

  2. #2
    Senior Member
    Real Name
    Ceri May
    Join Date
    Jul 2009
    Location
    United Kingdom
    Posts
    1,726
    Liked
    15 times
    Blog Entries
    1
    Hi,

    Firstly, great choice for the move, because during the Impex process the thread IDs will almost definitely change so will your URLs.

    However, using vBSEO along with our 404/301 Impex redirection tool, you will be able to correctly redirect all of the old forum and thread URLs to the new ones using a Search Engine Recognised 301 redirect.

    You will probably experience a period of reindexing while the search engines replace all of your old URLs with the new ones but again vBSEO's is very good at maximising the crawling efficiency and so should help reduce this re-indexing period for you.

    If you have any other questions, please let me know.

    Ceri

  3. #3
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    I'm sorry Ceri, but my english is really bad, so I don't sure to have understood all of your answer.
    You've told me that vBseo will do all things for me? My static URLs will be redirected to new URLs without modification to .htaccess and so on?

  4. #4
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times
    Hi Giorgino,

    The tool Ceri is referring to is found here: 404 / 301 Tool After Import Redirect on ImpEx imported forums .. it accepts your current structure and turns it into the new structure.

    You would need to add these new rewrites to either .htaccess, httpd.conf or the vBSEO internal Control Panel's 301 redirect tool.

    If your current phpBB rules are compatible, your 301s will be set up and the traffic will redirect from the old to new URLs.

  5. #5
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    Thank you Ace for your suggestions. Can I use "404 / 301 Tool After Import Redirect on ImpEx imported " with phpBBSEO package installed?
    My static URLs are www.example.com/forum/this-is-a-topic.html not www.example.com/forum/viewtopic.php?...

  6. #6
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times
    I'm not sure, to be honest.

    Unfortunately, it looks like that SEO method has committed what I understand to be a cardinal sin when rewriting dynamic content to 'static' - you've removed the ID. Without that, it's often not possible for the new script to determine which thread to use.

    I'll ask a developer to take a look at this thread.

  7. #7
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    Thank you Ace I'll wait yours developers and sorry again for my english

  8. #8
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times
    Quote Originally Posted by GIORGINO View Post
    Thank you Ace I'll wait yours developers and sorry again for my english
    Not a problem.

    I can understand what you're saying completely... that's all that really matters, right?

  9. #9
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    Yes of course Ace

    This is my .htacess, hope this helps



    Code:
    # You may need to un-comment the following lines
    # Options +FollowSymlinks
    # To make sure that rewritten dir or file (/|.html) will not load dir.php in case it exist
    # Options -MultiViews
    # REMEBER YOU ONLY NEED TO STARD MOD REWRITE ONCE
    RewriteEngine On
    # REWRITE BASE
    RewriteBase /
    # HERE IS A GOOD PLACE TO FORCE CANONICAL DOMAIN
    # RewriteCond %{HTTP_HOST} !^www\.example\.it$ [NC]
    # RewriteRule ^(.*)$ http://www.example.it/$1 [QSA,L,R=301]
    
    # DO NOT GO FURTHER IF THE REQUESTED FILE / DIR DOES EXISTS
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    #####################################################
    # PHPBB SEO REWRITE RULES ALL MODES
    #####################################################
    # AUTHOR : dcz phpBB SEO
    # STARTED : 01/2006
    #################################
    # FORUMS PAGES
    ###############
    # FORUM INDEX REWRITERULE WOULD STAND HERE IF USED. "forum" REQUIRES TO BE SET AS FORUM INDEX
    # RewriteRule ^forum/forum\.html$ /forum/index.php [QSA,L,NC]
    # FORUM ALL MODES
    RewriteRule ^forum/(forum|[a-z0-9_-]*-f)([0-9]+)(-([0-9]+))?\.html$ /forum/viewforum.php?f=$2&start=$4 [QSA,L,NC]
    # TOPIC WITH VIRTUAL FOLDER ALL MODES
    RewriteRule ^forum/(forum|[a-z0-9_-]*-f)([0-9]+)/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?f=$2&t=$4&start=$6 [QSA,L,NC]
    # GLOBAL ANNOUNCES WITH VIRTUAL FOLDER ALL MODES
    RewriteRule ^forum/announces/(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?t=$2&start=$4 [QSA,L,NC]
    # TOPIC WITHOUT FORUM ID & DELIM ALL MODES
    RewriteRule ^forum/([a-z0-9_-]*)/?(topic|[a-z0-9_-]*-t)([0-9]+)(-([0-9]+))?\.html$ /forum/viewtopic.php?forum_uri=$1&t=$3&start=$5 [QSA,L,NC]
    # PHPBB FILES ALL MODES
    RewriteRule ^forum/resources/[a-z0-9_-]+/(thumb/)?([0-9]+)$ /forum/download/file.php?id=$2&t=$1 [QSA,L,NC]
    # PROFILES THROUGH USERNAME
    RewriteRule ^forum/member/([^/]+)/?$ /forum/memberlist.php?mode=viewprofile&un=$1 [QSA,L,NC]
    # USER MESSAGES THROUGH USERNAME
    RewriteRule ^forum/member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /forum/search.php?author=$1&sr=$2&start=$4 [QSA,L,NC]
    # GROUPS ALL MODES
    RewriteRule ^forum/(group|[a-z0-9_-]*-g)([0-9]+)(-([0-9]+))?\.html$ /forum/memberlist.php?mode=group&g=$2&start=$4 [QSA,L,NC]
    # POST
    RewriteRule ^forum/post([0-9]+)\.html$ /forum/viewtopic.php?p=$1 [QSA,L,NC]
    # ACTIVE TOPICS
    RewriteRule ^forum/active-topics(-([0-9]+))?\.html$ /forum/search.php?search_id=active_topics&start=$2&sr=topics [QSA,L,NC]
    # UNANSWERED TOPICS
    RewriteRule ^forum/unanswered(-([0-9]+))?\.html$ /forum/search.php?search_id=unanswered&start=$2&sr=topics [QSA,L,NC]
    # NEW POSTS
    RewriteRule ^forum/newposts(-([0-9]+))?\.html$ /forum/search.php?search_id=newposts&start=$2&sr=topics [QSA,L,NC]
    # THE TEAM
    RewriteRule ^forum/the-team\.html$ /forum/memberlist.php?mode=leaders [QSA,L,NC]
    # HERE IS A GOOD PLACE TO ADD OTHER PHPBB RELATED REWRITERULES
    
    #####################################################
    # GYM Sitemaps & RSS
    # Global channels
    RewriteRule ^forum/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?/?$ /forum/gymrss.php?channels&$2&$4&$6 [QSA,L,NC]
    # HTML Global news & maps
    RewriteRule ^forum/(news|maps)/?(page([0-9]+)\.html)?$ /forum/map.php?$1&start=$3 [QSA,L,NC]
    # END GYM Sitemaps & RSS
    #####################################################
    
    # FORUM WITHOUT ID & DELIM ALL MODES (SAME DELIM)
    # THESE FOUR LINES MUST BE LOCATED AT THE END OF YOUR HTACCESS TO WORK PROPERLY
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^forum/([a-z0-9_-]+)(-([0-9]+))\.html$ /forum/viewforum.php?forum_uri=$1&start=$3 [QSA,L,NC]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^forum/([a-z0-9_-]+)\.html$ /forum/viewforum.php?forum_uri=$1 [QSA,L,NC]
    # END PHPBB PAGES
    #####################################################
    
    #####################################################
    # GYM Sitemaps & RSS
    # HTML Module additional modes
    RewriteRule ^forum/(news|maps)/([a-z0-9_-]+)(/([a-z0-9_-]+))?/?(page([0-9]+)\.html)?$ /forum/map.php?$2=$4&$1&start=$6 [QSA,L,NC]
    # Main feeds & channels
    RewriteRule ^forum/rss(/(news)+)?(/(digest)+)?(/(short|long)+)?(/([a-z0-9_-]+))?/([a-z0-9_]+)\.xml(\.gz)?$ /forum/gymrss.php?$9=$8&$2&$4&$6&gzip=$10 [QSA,L,NC]
    # Module feeds
    RewriteRule ^forum/[a-z0-9_-]*-[a-z]{1}([0-9]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /forum/gymrss.php?$8=$1&$3&$5&$7&gzip=$9 [QSA,L,NC]
    # Module feeds without ids
    RewriteRule ^forum/([a-z0-9_-]+)(/(news)+)?(/(digest)+)?(/(short|long)+)?/([a-z0-9_]+)\.xml(\.gz)?$ /forum/gymrss.php?nametoid=$1&$3&$5&$7&modulename=$8&gzip=$9 [QSA,L,NC]
    # Google SitemapIndex
    RewriteRule ^forum/sitemapindex\.xml(\.gz)?$ /forum/sitemap.php?gzip=$1 [QSA,L,NC]
    # Module cat sitemaps
    RewriteRule ^forum/[a-z0-9_-]+-([a-z]{1})([0-9]+)\.xml(\.gz)?$ /forum/sitemap.php?module_sep=$1&module_sub=$2&gzip=$3 [QSA,L,NC]
    # Module sitemaps
    RewriteRule ^forum/([a-z0-9_]+)-([a-z0-9_-]+)\.xml(\.gz)?$ /forum/sitemap.php?$1=$2&gzip=$3 [QSA,L,NC]
    # END GYM Sitemaps & RSS
    #####################################################

  10. #10
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Hello ,

    All your rewrite rules that has id inside can be correctly redirected to new vBSEO'd format. The only problem i see can be related to your forum rewrite rules. It looks like Phpbb SEO offers rewrite rules that has both id and forum name only. If you are not having forum id within your existing urls , it is not possible to redirect only your forum urls
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  11. #11
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    uhmm... I try to answer your question Mert

    The following link are 2 real link to my board:
    This is a thread link Sei un agente immobiliare? Clicca Qui! : Sorridi! Sei su immobilio.it! - Pagina 55 Forum Immobiliare per Agenzie e Professionisti
    And this is a forum link Sorridi! Sei su immobilio.it! Forum Immobiliare per Agenzie e Professionisti

    Hope this helps

  12. #12
    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
    The thread links will be able to be directed, as they have the ID in them. (t23)
    The forum links will not, as they do not have the ID in them. However, you can create 1 rule per forum if you wish to direct to the new location.

    Threads are the important ones. Links to a forum probably aren't abundant.

  13. #13
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    Quote Originally Posted by Brian Cummiskey View Post
    Threads are the important ones. Links to a forum probably aren't abundant.
    Yes of course. I'll manually redirect forum old links (following your suggestions)
    Great news for the thread links. Next week I'll buy e vBseo licence for starting the first migration.

    Thank you for support

  14. #14
    Member
    Real Name
    giorgino
    Join Date
    Jan 2010
    Posts
    73
    Liked
    5 times
    Ok I have bought VbSeo and vB4. I'm started the migration process from my phpBB live installation to vB4 test installation. Avatar and attachments don't sync... :( I'll try to solve the problems...

    I've installed the vBSEO plugin and all goes well. What have I to do for test the redirections formulas?

    Thanks!

  15. #15
    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
    To test the old urls, simply load an old url (via bookmark, or old search result, etc) and make sure it redirects to the correct location on vb/vbseo.

Page 1 of 3 1 2 3 LastLast

Similar Threads

  1. Vbseo style for Vbulletin Suite 4.0
    By Ramya108 in forum vBSEO.com Styles
    Replies: 7
    Last Post: 04-26-2010, 03:29 AM
  2. VB 3.8.4.PL2 to VB4 suite and vbseo 3.5 RC
    By Big-Pete in forum General Discussion
    Replies: 2
    Last Post: 12-22-2009, 09:35 AM
  3. Vbseo 3.5 ve vbullerin 4.0 publish suite
    By my2dd in forum Türkçe
    Replies: 1
    Last Post: 12-21-2009, 01:39 AM
  4. Converting from phpbb3 board
    By Blind Dragon in forum Pre-Sales Questions
    Replies: 22
    Last Post: 11-29-2009, 07:27 PM
  5. vBSEO 3.3.2 für vB4 Suite einsetzbar ?
    By Thrust in forum Deutsch
    Replies: 4
    Last Post: 11-18-2009, 02:18 PM

Posting Permissions

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