summaryrefslogtreecommitdiff
path: root/sanity_check.php
blob: 322aa9bf1fcbef8985b6d5df82518cadc5fa7598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?
	if (!file_exists("config.php")) {
		print "<b>Fatal Error</b>: You forgot to copy 
		<b>config.php-dist</b> to <b>config.php</b> and edit it.";
		exit;
	}

	if (!file_exists("magpierss/rss_fetch.inc")) {
		print "<b>Fatal Error</b>: You forgot to place 
		<a href=\"http://magpierss.sourceforge.net\">MagpieRSS</a>
		distribution in <b>magpierss/</b>
		subdirectory of TT-RSS tree.";
		exit;
	}
?>