From: Andrew Dolgov Date: Tue, 28 Mar 2006 07:56:56 +0000 (+0100) Subject: new CONFIG_VERSION configuration option X-Git-Tag: 1.1.5~23 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=adf702d686736e114d36c154f85e8344b610a0da;p=tt-rss.git new CONFIG_VERSION configuration option --- diff --git a/backend.php b/backend.php index 482874d2..8acf2686 100644 --- a/backend.php +++ b/backend.php @@ -4120,11 +4120,20 @@ function check_configuration_variables() { if (!defined('SESSION_EXPIRE_TIME')) { - return "SESSION_EXPIRE_TIME is undefined"; + return "config: SESSION_EXPIRE_TIME is undefined"; } if (SESSION_EXPIRE_TIME < 60) { - return "SESSION_EXPIRE_TIME is too low (less than 60)"; + return "config: SESSION_EXPIRE_TIME is too low (less than 60)"; + } + + if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME_REMEMBER) { + return "config: SESSION_EXPIRE_TIME should be greater or equal to" . + "SESSION_COOKIE_LIFETIME_REMEMBER"; + } + + if (defined('DISABLE_SESSIONS') && DISABLE_SESSIONS) { + return "config: you have enabled DISABLE_SESSIONS. Please disable this option."; } return false; diff --git a/config.php-dist b/config.php-dist index 94437041..fa7376af 100644 --- a/config.php-dist +++ b/config.php-dist @@ -119,5 +119,9 @@ // Hard expiration limit for sessions. Should be // >= SESSION_COOKIE_LIFETIME_REMEMBER + define('CONFIG_VERSION', 1); + // Expected config version. Please updated this option in config.php + // if necessary (after migrating all new options from this file). + // vim:ft=php ?> diff --git a/sanity_check.php b/sanity_check.php index 21fc0819..e8b1ca34 100644 --- a/sanity_check.php +++ b/sanity_check.php @@ -1,10 +1,19 @@ Fatal Error: You forgot to copy config.php-dist to config.php and edit it."; exit; } + if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) { + print "Fatal Error: Your configuration file has + wrong version. Please copy new options from config.php-dist and + update CONFIG_VERSION directive."; + exit; + } + if (!file_exists("magpierss/rss_fetch.inc")) { print "Fatal Error: You forgot to place MagpieRSS @@ -13,6 +22,10 @@ exit; } + if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) { + return "config: your config file version is incorrect. See config.php-dist."; + } + if (file_exists("xml-export.php") || file_exists("xml-import.php")) { print "Fatal Error: XML Import/Export tools (xml-export.php and xml-import.php) could be used maliciously. Please remove them