]> git.wh0rd.org - tt-rss.git/blob - sanity_check.php
rewrite README, update UPGRADING
[tt-rss.git] / sanity_check.php
1 <?
2 if (!file_exists("config.php")) {
3 print "<b>Fatal Error</b>: You forgot to copy
4 <b>config.php-dist</b> to <b>config.php</b> and edit it.";
5 exit;
6 }
7
8 if (!file_exists("magpierss/rss_fetch.inc")) {
9 print "<b>Fatal Error</b>: You forgot to place
10 <a href=\"http://magpierss.sourceforge.net\">MagpieRSS</a>
11 distribution in <b>magpierss/</b>
12 subdirectory of TT-RSS tree.";
13 exit;
14 }
15 ?>