From c8e7d8b92e6f3b59636d2c72a6bfdbe158827e23 Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Fri, 11 Sep 2020 12:56:51 +0200 Subject: [PATCH] Add warning to $check_ip in PHP about the cloud server migration --- php/settings-config.inc.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/php/settings-config.inc.php b/php/settings-config.inc.php index 2712039..9bcadf1 100644 --- a/php/settings-config.inc.php +++ b/php/settings-config.inc.php @@ -11,4 +11,9 @@ $email_from="you@yourhost.com"; // your server's sending email (for error report $allow_install = false; // enable to allow action=install (clear/format database) -$check_ip = false; // enable to check the sim ip submitting the data is in the allowed range +// Enable to check if the sim IP submitting the data is in the allowed range. +// WARNING: After the migration of SL to cloud servers, ensure this setting +// is set to FALSE, otherwise validation will always fail even for +// good addresses. If other means of verification are provided, this +// script will be updated accordingly. +$check_ip = false;