Yes, that is correct. I will use 1 licence for every domain that uses the same base (vBulletin) platform.
Aldough, to make this answere more uniform. It is allowed to use a difrent domain for a subforum of a forum if it is clearly a subforum and the subject is relative to the main forum.
I have discussed this with support, it's also no problem with vBSEO. This is a great benefit for forum SEO.
--------------- Added 28 Feb 2008 at 11:39 ---------------
As of now I found the folowing solution, however it seems not all phrases are loaded yet and this may not be the perfect solution to do it. If anyone hase some advice it would be very nice.
PHP Code:
define('THIS_SCRIPT', 'forumdisplay');
if (is_numeric($vbulletin->pcSys->domain["forum_id"]) && $vbulletin->pcSys->domain["forum_id"] > 0) {
$_GET["forumid"] = $_REQUEST["forumid"] = $_GET["f"] = $_REQUEST["f"] = $vbulletin->pcSys->domain["forum_id"]; //
} else {
$vbulletin->pcSys->fatal_error('No forum id configured for this domain');
}
$vbulletin->input->clean_array_gpc('r', array(
'referrerid' => TYPE_UINT,
'postid' => TYPE_UINT,
'threadid' => TYPE_UINT,
'forumid' => TYPE_INT,
'pollid' => TYPE_UINT,
'a' => TYPE_STR,
'mode' => TYPE_STR, // Threaded mode // may conflict with other 'mode' variables?
'nojs' => TYPE_BOOL,
));
unset($vbphrase);
unset($usercache[$vbulletin->userinfo["userid"]]);
$userinfo = fetch_userinfo($vbulletin->userinfo["userid"]);
foreach ($userinfo as $key => $value) {
$vbulletin->userinfo[$key] = $value;
}
unset($userinfo);
$vbphrase = init_language();
(updated 12:34)
The $phrasegroups array will be populated with the folowing variables:
Array ( [0] => forumdisplay [1] => inlinemod [2] => prefix [3] => global )
--------------- Added 28 Feb 2008 at 12:45 ---------------
It seems the script is correct and the $phrasegroups array is complete. So the script will work.