Skip to content

Commit 6c1aa15

Browse files
committed
Correct SERVER_NAME to HTTP_HOST to get a valid host url
1 parent e2a3536 commit 6c1aa15

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

include/classes/user.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ public function logoutUser() {
666666
// Enforce a page reload and point towards login with referrer included, if supplied
667667
$port = ($_SERVER["SERVER_PORT"] == "80" || $_SERVER["SERVER_PORT"] == "443") ? "" : (":".$_SERVER["SERVER_PORT"]);
668668
$pushto = $_SERVER['SCRIPT_NAME'].'?page=login';
669-
$location = (@$_SERVER['HTTPS'] == 'on') ? 'https://' . $_SERVER['SERVER_NAME'] . $port . $pushto : 'http://' . $_SERVER['SERVER_NAME'] . $port . $pushto;
669+
$location = (@$_SERVER['HTTPS'] == 'on') ? 'https://' . $_SERVER['HTTP_HOST'] . $port . $pushto : 'http://' . $_SERVER['HTTP_HOST'] . $port . $pushto;
670670
if (!headers_sent()) header('Location: ' . $location);
671671
exit('<meta http-equiv="refresh" content="0; url=' . $location . '"/>');
672672
}

include/lib/swiftmailer/classes/Swift/Mime/SimpleMimeEntity.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ protected function _clearCache()
687687
protected function getRandomId()
688688
{
689689
$idLeft = md5(getmypid() . '.' . time() . '.' . uniqid(mt_rand(), true));
690-
$idRight = !empty($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : 'swift.generated';
690+
$idRight = !empty($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'swift.generated';
691691
$id = $idLeft . '@' . $idRight;
692692

693693
try {

include/lib/swiftmailer/classes/Swift/Transport/AbstractSmtpTransport.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -477,10 +477,10 @@ private function _sendBcc(Swift_Mime_Message $message, $reversePath, array $bcc,
477477
/** Try to determine the hostname of the server this is run on */
478478
private function _lookupHostname()
479479
{
480-
if (!empty($_SERVER['SERVER_NAME'])
481-
&& $this->_isFqdn($_SERVER['SERVER_NAME']))
480+
if (!empty($_SERVER['HTTP_HOST'])
481+
&& $this->_isFqdn($_SERVER['HTTP_HOST']))
482482
{
483-
$this->_domain = $_SERVER['SERVER_NAME'];
483+
$this->_domain = $_SERVER['HTTP_HOST'];
484484
} elseif (!empty($_SERVER['SERVER_ADDR'])) {
485485
$this->_domain = sprintf('[%s]', $_SERVER['SERVER_ADDR']);
486486
}

include/pages/account/reset_failed.inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
$user->setUserFailed($_SESSION['USERDATA']['id'], 0);
77
$port = ($_SERVER["SERVER_PORT"] == "80" || $_SERVER["SERVER_PORT"] == "443") ? "" : (":".$_SERVER["SERVER_PORT"]);
88
$pushto = $_SERVER['SCRIPT_NAME'].'?page=dashboard';
9-
$location = (@$_SERVER['HTTPS'] == 'on') ? 'https://' . $_SERVER['SERVER_NAME'] . $port . $pushto : 'http://' . $_SERVER['SERVER_NAME'] . $port . $pushto;
9+
$location = (@$_SERVER['HTTPS'] == 'on') ? 'https://' . $_SERVER['HTTP_HOST'] . $port . $pushto : 'http://' . $_SERVER['HTTP_HOST'] . $port . $pushto;
1010
header("Location: " . $location);
1111
}
1212
// Somehow we still need to load this empty template

include/pages/login.inc.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
if ($user->checkLogin(@$_POST['username'], @$_POST['password']) ) {
3030
$port = ($_SERVER["SERVER_PORT"] == "80" || $_SERVER["SERVER_PORT"] == "443") ? "" : (":".$_SERVER["SERVER_PORT"]);
3131
$location = (@$_SERVER['HTTPS'] == "on") ? 'https://' : 'http://';
32-
$location .= $_SERVER['SERVER_NAME'] . $port . $_SERVER['SCRIPT_NAME'];
32+
$location .= $_SERVER['HTTP_HOST'] . $port . $_SERVER['SCRIPT_NAME'];
3333
$location.= '?page=dashboard';
3434
if (!headers_sent()) header('Location: ' . $location);
3535
exit('<meta http-equiv="refresh" content="0; url=' . htmlspecialchars($location) . '"/>');

public/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function cfip() { return (@defined('SECURITY')) ? 1 : 0; }
4040
include_once(BASEPATH . '../include/bootstrap.php');
4141

4242
// switch to https if config option is enabled
43-
$hts = ($config['https_only'] && (!empty($_SERVER['QUERY_STRING']))) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']."?".$_SERVER['QUERY_STRING'] : "https://".$_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME'];
43+
$hts = ($config['https_only'] && (!empty($_SERVER['QUERY_STRING']))) ? "https://".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']."?".$_SERVER['QUERY_STRING'] : "https://".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
4444
($config['https_only'] && @!$_SERVER['HTTPS']) ? exit(header("Location: ".$hts)):0;
4545

4646
// Rate limiting, we use our initilized memcache from bootstrap/autoloader

0 commit comments

Comments
 (0)