mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-22 23:21:28 +00:00
Only do sanity checks for self URL if we can create a valid URL.
'sanity_check.php' gets included in 'update.php' and 'update_daemon2.php', where a Host request header is likely not provided.
This commit is contained in:
@@ -21,6 +21,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function make_self_url_path() {
|
function make_self_url_path() {
|
||||||
|
if (!isset($_SERVER["HTTP_HOST"])) return false;
|
||||||
|
|
||||||
$proto = is_server_https() ? 'https' : 'http';
|
$proto = is_server_https() ? 'https' : 'http';
|
||||||
$url_path = $proto . '://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
|
$url_path = $proto . '://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
|
||||||
|
|
||||||
@@ -115,14 +117,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$ref_self_url_path = make_self_url_path();
|
$ref_self_url_path = make_self_url_path();
|
||||||
$ref_self_url_path = preg_replace("/\w+\.php$/", "", $ref_self_url_path);
|
|
||||||
|
|
||||||
if (SELF_URL_PATH == "http://example.org/tt-rss/") {
|
if ($ref_self_url_path) {
|
||||||
array_push($errors,
|
$ref_self_url_path = preg_replace("/\w+\.php$/", "", $ref_self_url_path);
|
||||||
"Please set SELF_URL_PATH to the correct value for your server (possible value: <b>$ref_self_url_path</b>)");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_SERVER["HTTP_HOST"]) &&
|
if (SELF_URL_PATH == "http://example.org/tt-rss/") {
|
||||||
|
$hint = $ref_self_url_path ? "(possible value: <b>$ref_self_url_path</b>)" : "";
|
||||||
|
array_push($errors,
|
||||||
|
"Please set SELF_URL_PATH to the correct value for your server $hint");
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($ref_self_url_path &&
|
||||||
(!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS) &&
|
(!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS) &&
|
||||||
SELF_URL_PATH != $ref_self_url_path && SELF_URL_PATH != mb_substr($ref_self_url_path, 0, mb_strlen($ref_self_url_path)-1)) {
|
SELF_URL_PATH != $ref_self_url_path && SELF_URL_PATH != mb_substr($ref_self_url_path, 0, mb_strlen($ref_self_url_path)-1)) {
|
||||||
array_push($errors,
|
array_push($errors,
|
||||||
|
|||||||
Reference in New Issue
Block a user