]> git.wh0rd.org - tt-rss.git/blame - sanity_check.php
add favicon link to login.php
[tt-rss.git] / sanity_check.php
CommitLineData
1d3a17c7 1<?php
1e7f3b0c 2 define('EXPECTED_CONFIG_VERSION', 5);
adf702d6 3
66581886
AD
4 if (!file_exists("config.php")) {
5 print "<b>Fatal Error</b>: You forgot to copy
c798704b 6 <b>config.php-dist</b> to <b>config.php</b> and edit it.\n";
66581886
AD
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
c798704b 15 update CONFIG_VERSION directive.\n";
adf702d6
AD
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
c798704b 22 configuration file.\n";
f26baf36
AD
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>
c798704b 30 subdirectory of TT-RSS tree.\n";
66581886
AD
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>
c798704b 38 subdirectory of TT-RSS tree.\n";
7c5a308d
AD
39 exit;
40 }
41
42 if (RSS_BACKEND_TYPE != "simplepie" && RSS_BACKEND_TYPE != "magpie") {
c798704b 43 print "<b>Fatal Error</b>: Invalid RSS_BACKEND_TYPE\n";
7c5a308d
AD
44 exit;
45 }
46
47 if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
c798704b 48 return "config: your config file version is incorrect. See config.php-dist.\n";
7c5a308d 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
c798704b 54 from your TT-RSS instance.\n";
3f286c4c
AD
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
c798704b 60 supported now.\n";
51c04420
AD
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
c798704b 66 to 0 in single user mode.\n";
07280718
AD
67 exit;
68 }
c798704b
AD
69
70 if (USE_CURL_FOR_ICONS && ! function_exists("curl_init")) {
71 print "<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP
72 doesn't seem to support CURL functions.";
73 exit;
74 }
66581886 75?>