]> git.wh0rd.org - tt-rss.git/blame - sanity_check.php
add some CRs to update daemon
[tt-rss.git] / sanity_check.php
CommitLineData
1d3a17c7 1<?php
b72c3ef8 2 define('EXPECTED_CONFIG_VERSION', 4);
adf702d6 3
66581886
AD
4 if (!file_exists("config.php")) {
5 print "<b>Fatal Error</b>: You forgot to copy
6 <b>config.php-dist</b> to <b>config.php</b> and edit it.";
7 exit;
8 }
9
9d87df8f
AD
10 require_once "config.php";
11
adf702d6
AD
12 if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
13 print "<b>Fatal Error</b>: Your configuration file has
14 wrong version. Please copy new options from <b>config.php-dist</b> and
15 update CONFIG_VERSION directive.";
16 exit;
17 }
18
f26baf36
AD
19 if (!defined('RSS_BACKEND_TYPE')) {
20 print "<b>Fatal error</b>: RSS backend type is not defined
21 (config variable <b>RSS_BACKEND_TYPE</b>) - please check your
22 configuration file.";
23 exit;
24 }
25
7c5a308d 26 if (RSS_BACKEND_TYPE == "magpie" && !file_exists("magpierss/rss_fetch.inc")) {
66581886
AD
27 print "<b>Fatal Error</b>: You forgot to place
28 <a href=\"http://magpierss.sourceforge.net\">MagpieRSS</a>
29 distribution in <b>magpierss/</b>
30 subdirectory of TT-RSS tree.";
31 exit;
32 }
3f286c4c 33
7c5a308d
AD
34 if (RSS_BACKEND_TYPE == "simplepie" && !file_exists("simplepie/simplepie.inc")) {
35 print "<b>Fatal Error</b>: You forgot to place
36 <a href=\"http://simplepie.org\">SimplePie</a>
37 distribution in <b>simplepie/</b>
38 subdirectory of TT-RSS tree.";
39 exit;
40 }
41
42 if (RSS_BACKEND_TYPE != "simplepie" && RSS_BACKEND_TYPE != "magpie") {
43 print "<b>Fatal Error</b>: Invalid RSS_BACKEND_TYPE";
44 exit;
45 }
46
47 if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
48 return "config: your config file version is incorrect. See config.php-dist.";
49 }
adf702d6 50
3f286c4c
AD
51 if (file_exists("xml-export.php") || file_exists("xml-import.php")) {
52 print "<b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>
53 and <b>xml-import.php</b>) could be used maliciously. Please remove them
54 from your TT-RSS instance.";
55 exit;
56 }
51c04420
AD
57
58 if (RSS_BACKEND_TYPE != "magpie") {
59 print "<b>Fatal Error</b>: RSS backends other than magpie are not
60 supported now.";
61 exit;
62 }
07280718
AD
63
64 if (SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
65 print "<b>Fatal Error</b>: Please set DAEMON_UPDATE_LOGIN_LIMIT
66 to 0 in single user mode.";
67 exit;
68 }
66581886 69?>