ttrss/sanity_check.php

74 lines
2.1 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
2007-03-05 10:04:55 +01:00
require_once "functions.php";
define('EXPECTED_CONFIG_VERSION', 5);
if (!file_exists("config.php")) {
2007-03-05 09:45:38 +01:00
print __("<b>Fatal Error</b>: You forgot to copy
2006-12-21 18:08:19 +01:00
<b>config.php-dist</b> to <b>config.php</b> and edit it.\n");
exit;
}
2006-03-28 17:44:51 +02:00
require_once "config.php";
if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
2007-03-05 09:45:38 +01:00
return __("config: your config file version is incorrect. See config.php-dist.\n");
}
2006-12-25 09:00:41 +01:00
if (defined('RSS_BACKEND_TYPE')) {
2007-03-05 09:45:38 +01:00
print __("<b>Fatal error</b>: RSS_BACKEND_TYPE is deprecated. Please remove this
2006-12-25 09:00:41 +01:00
option from config.php\n");
exit;
}
if (file_exists("xml-export.php") || file_exists("xml-import.php")) {
2007-03-05 09:45:38 +01:00
print __("<b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>
and <b>xml-import.php</b>) could be used maliciously. Please remove them
2006-12-21 18:08:19 +01:00
from your TT-RSS instance.\n");
exit;
}
if (SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
2007-03-05 09:45:38 +01:00
print __("<b>Fatal Error</b>: Please set DAEMON_UPDATE_LOGIN_LIMIT
2006-12-21 18:08:19 +01:00
to 0 in single user mode.\n");
exit;
}
if (USE_CURL_FOR_ICONS && ! function_exists("curl_init")) {
2007-03-05 09:45:38 +01:00
print __("<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP
2006-12-21 18:08:19 +01:00
doesn't seem to support CURL functions.");
exit;
}
if (!defined('SESSION_EXPIRE_TIME')) {
2007-03-05 09:45:38 +01:00
$err_msg = __("config: SESSION_EXPIRE_TIME is undefined");
}
if (SESSION_EXPIRE_TIME < 60) {
2007-03-05 09:45:38 +01:00
$err_msg = __("config: SESSION_EXPIRE_TIME is too low (less than 60)");
}
2007-03-02 12:12:04 +01:00
if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME) {
2007-03-05 09:45:38 +01:00
$err_msg = __("config: SESSION_EXPIRE_TIME should be greater or equal to" .
2007-03-02 12:12:04 +01:00
"SESSION_COOKIE_LIFETIME");
}
2006-10-01 13:47:34 +02:00
/* if (defined('DISABLE_SESSIONS')) {
$err_msg = "config: you have enabled DISABLE_SESSIONS. Please disable this option.";
2006-10-01 13:47:34 +02:00
} */
if (DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE) {
2007-03-05 09:45:38 +01:00
$err_msg = __("config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE");
}
if (DATABASE_BACKED_SESSIONS && DB_TYPE == "mysql") {
2007-03-05 09:45:38 +01:00
$err_msg = __("config: DATABASE_BACKED_SESSIONS are currently broken with MySQL");
}
if ($err_msg) {
2007-03-05 09:45:38 +01:00
print "<b>".__("Fatal Error")."</b>: $err_msg\n";
exit;
}
?>