Quote:
Originally posted by codewebs
eeks i got it so will the vbhome addon work like forums.site.com and www.site.com/forums? but not this one? i might be misunderstanding u
|
Both will, if you edit the code.
The vbHome one works as default because it has it's own global.php file.
In the vBulletin one, all you have to do is add, at the top of each archive file, the $bburl variable, unmasked.
Sort of like:
Code:
<?php
// +--------------------------------------------------------------
// | Search Engine Indexer for vBulletin (Script by TECK)
// | http://www.teckwizards.com/
// | + archive
// +--------------------------------------------------------------
error_reporting( E_ALL & ~E_NOTICE );
$templatesused = 'archive,archive_homekeytag,archive_forumbit,archive_categorytitle,archive_forumtitle,archive_homeinfo';
require_once( './global.php' );
$bburl = 'http://yoursite.com/forums';
If you search my forums, you will see why is better to use the vbHome add-on.