Setting up MLM

blaine

New Member
in the settings.php there is this line:

$admin_webAddress = "http://" . $_SERVER['HTTP_HOST']; // Your web site address

I'm assuming this is the complete web address, IE:

$admin_webAddress = "http://patient-millionaire.com" . $_SERVER['HTTP_HOST']; // Your web site address


.... is this correct?
 

stanbusk

Administrator
Staff member
Yes so it has to be:

$admin_webAddress = "http://" . $_SERVER['HTTP_HOST'];

or

$admin_webAddress = "http://patient-millionaire.com";
 
Top