mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-29 17:11:28 +00:00
sanity: it's probably a good idea to check whether we're running under httpd before enforcing SELF_URL_PATH checks
This commit is contained in:
@@ -105,7 +105,7 @@
|
||||
"Please set SELF_URL_PATH to the correct value for your server (possible value: <b>$ref_self_url_path</b>)");
|
||||
}
|
||||
|
||||
if (SELF_URL_PATH != $ref_self_url_path && (!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS)) {
|
||||
if (isset($_SERVER["HTTP_HOST"]) && SELF_URL_PATH != $ref_self_url_path && (!defined('_SKIP_SELF_URL_PATH_CHECKS') || !_SKIP_SELF_URL_PATH_CHECKS)) {
|
||||
array_push($errors,
|
||||
"Please set SELF_URL_PATH to the correct value detected for your server: <b>$ref_self_url_path</b>");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user