Skip to content
Snippets Groups Projects
Commit ebe335bd authored by Ken West's avatar Ken West
Browse files

Forum topic 30462 - set $_SERVER['HTTP_HOST'] from CIVICRM_UF_BASEURL

parent 1c9e213a
No related branches found
No related tags found
No related merge requests found
......@@ -204,6 +204,15 @@ class civicrm_cli {
CRM_Core_ClassLoader::singleton()->register();
$this->_config = CRM_Core_Config::singleton();
// HTTP_HOST will be 'localhost' unless overwritten with the -s argument.
// Now we have a Config object, we can set it from the Base URL.
if ($_SERVER['HTTP_HOST'] == 'localhost') {
$_SERVER['HTTP_HOST'] = preg_replace(
'!^https?://([^/]+)/$!i',
'$1',
$this->_config->userFrameworkBaseURL);
}
$class = 'CRM_Utils_System_' . $this->_config->userFramework;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment