am using 7.0 version 3.7.4. + ssl,
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
define('WEB_PATH', 'https://'.$_SERVER['HTTP_HOST'].'/'); (line 29)
} else {
define('WEB_PATH', 'http://'.$_SERVER['HTTP_HOST'].'/'); (line 31)
}
PHP Notice: Undefined index: HTTP_HOST in /home/xxxxx/public_html/config.php on line 29
PHP Notice: Undefined index: HTTP_HOST in /home/xxxxx/public_html/config.php on line 31
as far as i know, (pls correct me if am wrong),
if i wrote $_SERVER[HTTP_HOST] instead of $_SERVER['HTTP_HOST'], then this issue should arise, but heres no reason for this issue arrising.