]> git.wh0rd.org - tt-rss.git/blobdiff - sanity_check.php
change description of CDM_AUTO_CATCHUP (bump schema)
[tt-rss.git] / sanity_check.php
index 628499d172391416a5e414a32fc6014a71b23071..83dacb15c00d73b0b32693804d30d2b15674d206 100644 (file)
@@ -1,8 +1,8 @@
 <?php
        require_once "functions.php";
 
-       define('EXPECTED_CONFIG_VERSION', 20);
-       define('SCHEMA_VERSION', 77);
+       define('EXPECTED_CONFIG_VERSION', 21);
+       define('SCHEMA_VERSION', 80);
 
        if (!file_exists("config.php")) {
                print "<b>Fatal Error</b>: You forgot to copy 
        }
 
        require_once "config.php";
+       require_once "sanity_config.php";
 
        if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
                $err_msg = "config: your config file version is incorrect. See config.php-dist.\n";
        }
 
+       $purifier_cache_dir = "lib/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer";
+
+       if (!is_writable($purifier_cache_dir)) {
+               $err_msg = "config: HTMLPurifier cache directory should be writable by anyone (chmod -R 777 $purifier_cache_dir)";
+       }
+
+       if (GENERATED_CONFIG_CHECK != EXPECTED_CONFIG_VERSION) {
+               $err_msg = "config: your sanity_config.php is outdated, please recreate it using ./utils/regen_config_checks.sh";
+       }
+
+       foreach ($requred_defines as $d) {
+               if (!defined($d)) {
+                       $err_msg = "config: required constant $d is not defined. Please check config.php";
+               }
+       }
+
        if (defined('RSS_BACKEND_TYPE')) {
                print "<b>Fatal error</b>: RSS_BACKEND_TYPE is deprecated. Please remove this
                        option from config.php\n";
@@ -35,8 +52,8 @@
                exit;
        }
 
-       if (USE_CURL_FOR_ICONS && ! function_exists("curl_init")) {
-               print "<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP 
+       if (USE_CURL && ! function_exists("curl_init")) {
+               print "<b>Fatal Error</b>: You have enabled USE_CURL, but your PHP 
                        doesn't seem to support CURL functions.";
                exit;
        } 
                $err_msg = "config: your ICONS_DIR (" . ICONS_DIR . ") is not writable.\n";
        }
 
+       if (ini_get("open_basedir")) {
+               $err_msg = "php.ini: open_basedir is not supported.";
+       }
+
+       if (!ini_get("allow_url_fopen")) {
+               $err_msg = "php.ini: allow_url_fopen is required.";
+       }
+
+       if (!function_exists("json_encode")) {
+               $err_msg = "PHP: json functions not found.";
+       }
+
+       if (DB_TYPE == "mysql" && !function_exists("mysql_connect")) {
+               $err_msg = "PHP: MySQL functions not found.";
+       }
+
+       if (DB_TYPE == "pgsql" && !function_exists("pg_connect")) {
+               $err_msg = "PHP: PostgreSQL functions not found.";
+       }
+
+       if (!function_exists("mb_strlen")) {
+               $err_msg = "PHP: mbstring functions not found.";
+       }
+
+       if (ini_get("safe_mode")) {
+               $err_msg = "php.ini: Safe mode is not supported. If you wish to continue, remove this test from sanity_check.php and proceeed at your own risk. Please note that your bug reports will not be accepted or reviewed.";
+       }
+
+       if (defined('USE_CURL_FOR_ICONS')) {
+               $err_msg = "config: USE_CURL_FOR_ICONS has been renamed to USE_CURL.";
+       }
+
        if ($err_msg) {
                print "<b>Fatal Error</b>: $err_msg\n";
                exit;