i am using vb 3.6 too, here is what i do so the vb archive working too, just want to share it, if some one can make it more perfect please share it too
1. Fixing the flags in archive, if the flags not showing in your archive pages, use this step
go to your admin panel --> Plugins & Products --> Plugin Manager --> search for plugin "Handle flags in archive" without quotes
find
Code:
$metatags .= '
<link rel="stylesheet" type="text/css" href="http://www.vbenterprisetranslator.com/forum/images/vbet/flags/vbet.css"/>';
replace
vBulletin Enterprise Translator (vBET) - Powered by vBulletin with your forum path, the flags not showing because wrong images pathor because the archive folder rewrited too in vbseo, so we are fixing it here
Code:
$metatags .= '
<link rel="stylesheet" type="text/css" href="http://www.yourdomain.com/forumfolderifany/images/vbet/flags/vbet.css"/>';
now reload and check again you archive, the flags should be showed in your archives pages too
2. If you use rewrited archive page using vbseo, and the link in translated archive page is wrong link you can fix it too
for example wrong link like this, it will get Page not found error
Code:
http://www.domain.com/forum/es/f-2.html
its should be like this, above url are missing a folder name in the bold below, some people using
/archive/ ,or
/sitemap/ folder name or other folder name
Code:
http://www.domain.com/forum/es/archive/f-2.html
to fix this we can use vbseo CRR
go to your vbseocp.php --> Custom Rewrite Rules --> add this line (in the bottom of CRR column) if your archive folder name using /archive/ like this
http://www.domain.com/forum/archive/
Code:
'f-(\d+).html' => 'f/archive/f-$1.html'
if your archive folder using /sitemap/ folder name like this
http://www.domain.com/forum/sitemap/ just change the folder name
Code:
'f-(\d+).html' => 'f/sitemap/f-$1.html'
this will do the trick, you can use vbet for vb 3.6 archive pages
3. If you get error message like this in the top of archive page sometime (this is not related or because 2 step above)
use this
meto instruction, i use it and its works