*THIS NOT TESTED*
for those who want to use multiple domains open their init.php file and find:
PHP Code:
$http_host = preg_replace('#^www\.#i', '', $http_host);
after that add:
PHP Code:
$allowedhosts= array();
$allowedhosts[]= "subdomain.yoursite.com";
$allowedhosts[]= "othersite.com";
$allowedhosts[]= "subdomain.othersite.com";
if(in_array($http_host, $allowedhosts))
{
$referrer_parts['host']= $http_host;
}
ok acceptable host names for $allowedhosts array for example are:
subdomain.yoursite.com
othersite.com
subdomain.othersite.com
do not include http:// or www. as prefix to any of the $allowedhosts!
if someone could test and report back that would be great