Right, can’t quite figure out why this keeps re-occuring … 1 physical installation of OXID CE 4.5 which is suppose to be available to be accessed from 2 different domains(same domain name, but different countries). OXID is functional and does work, i also have modified the Configuration file to have this in it for multiple domain name use(cheers for keeping old posts in this forum btw, saved me time looking for this same code line actually):
if ($_SERVER['HTTP_HOST'] == 'URL#1')
{
$this->sShopURL = 'URL#1';
} else {
$this->sShopURL = 'URL#2';
}
But what happens is that when ever i access OXID trough “URL#1” every link in the interface has links to “URL#2” so you end up “jumping over”(so to speak) to that domain … any ideas why is this happening and can i tell OXID to stick with the domain name that it was originally addressed trough. It’s not causing any errors or anything, it simply may cause some confusion for the customers as well as it represents a flawed experience for interacting with the website.