1 <? require_once "version.php" ?>
2 <? require_once "config.php" ?>
5 $ERRORS[0] = "Unknown error";
7 $ERRORS[1] = "This program requires XmlHttpRequest " .
8 "to function properly. Your browser doesn't seem to support it.";
10 $ERRORS[2] = "This program requires cookies " .
11 "to function properly. Your browser doesn't seem to support them.";
13 $ERRORS[3] = "Backend sanity check failed.";
15 $ERRORS[4] = "Frontend sanity check failed.";
17 $ERRORS[5] = "Incorrect database schema version.";
23 <title>Tiny Tiny RSS : Error Message</title>
25 <link rel="stylesheet" href="tt-rss.css" type="text/css">
27 <!--[if gte IE 5.5000]>
28 <script type="text/javascript" src="pngfix.js"></script>
31 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
34 <table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
35 <? if (DISPLAY_HEADER) { ?>
38 <table cellspacing="0" cellpadding="0" width="100%"><tr>
39 <td class="header" valign="middle">
40 <img src="images/ttrss_logo.png" alt="logo">
42 <td align="right" valign="top">
43 <div id="notify"><span id="notify_body"></div>
50 <td id="prefContent" class="prefContent" valign="top" colspan="2">
54 <div class="bigErrorMsg"><?= $ERRORS[$_GET["c"]] ?></div>
58 <? if (DISPLAY_FOOTER) { ?>
60 <td class="footer" colspan="2">
61 <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> © 2005 Andrew Dolgov
62 <? if (WEB_DEMO_MODE) { ?>
63 <br>Running in demo mode, some functionality is disabled.