Ready to buy but...

Walter thanks so much i will contact him..

Now the major question.. What it will be transfered form my current phpbb v 3.0.1.1 board?

Forums?
Subforums?
Members?
Moderators?
Post counts? (important)
Forum views? (very impordant)

Avatars?

Last question
Now when I google 2cv all relevant info is linked to my forum (www.my2cv.gr)
Is this going to be changed if i go XenForo?

Thanking you in advance!
 
All of the below will be imported.

xenforo-1-1-phpbb-3-import-png.22072


You can set up redirects for existing links.
 
Forum Views, I'm not sure on, but the rest will most definitely get imported over. With proper redirects set up (301 Permanently Moved), search engines will gradually update their indexes to point to the next XenForo installation.

... ninja'd ... again ...
 
I used the below in .htaccess and it covered pretty much all of the old phpBB3 links

Code:
RewriteCond %{QUERY_STRING} (^|&)t=([0-9]+)(&|$) [NC]
        RewriteRule ^viewtopic\.php$ /threads/%2? [L,R=301,NC]
        RewriteCond %{QUERY_STRING} f=(\d+)$ [NC]
        RewriteRule ^(viewforum\.php|viewtopic\.php)$ /forums/%1? [L,R=301,NC]
        RewriteCond %{QUERY_STRING} (^|&)p=([0-9]+)(&|$) [NC]
        RewriteRule ^viewtopic\.php$ /posts/%2? [L,R=301,NC]
 
Top Bottom