]> git.wh0rd.org - tt-rss.git/commitdiff
add error.php
authorAndrew Dolgov <fox@madoka.spb.ru>
Wed, 16 Nov 2005 08:01:19 +0000 (09:01 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Wed, 16 Nov 2005 08:01:19 +0000 (09:01 +0100)
error.php [new file with mode: 0644]

diff --git a/error.php b/error.php
new file mode 100644 (file)
index 0000000..e1e9045
--- /dev/null
+++ b/error.php
@@ -0,0 +1,74 @@
+<? require_once "version.php" ?>
+<? require_once "config.php" ?>
+
+<?
+       $ERRORS[0] = "Unknown error";
+
+       $ERRORS[1] = "This program requires XmlHttpRequest " .
+                       "to function properly. Your browser doesn't seem to support it.";
+
+       $ERRORS[2] = "This program requires cookies " .
+                       "to function properly. Your browser doesn't seem to support them.";
+
+       $ERRORS[3] = "Backend sanity check failed.";
+
+       $ERRORS[4] = "Frontend sanity check failed.";
+
+       $ERRORS[5] = "Incorrect database schema version.";
+
+?>
+
+<html>
+<head>
+       <title>Tiny Tiny RSS : Error Message</title>
+
+       <link   rel="stylesheet" href="tt-rss.css" type="text/css">
+       
+       <!--[if gte IE 5.5000]>
+               <script type="text/javascript" src="pngfix.js"></script>
+       <![endif]-->
+
+       <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+</head>
+
+<table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
+<? if (DISPLAY_HEADER) { ?>
+<tr>
+       <td colspan="2">
+               <table cellspacing="0" cellpadding="0" width="100%"><tr>
+                       <td class="header" valign="middle">     
+                               <img src="images/ttrss_logo.png" alt="logo">    
+                       </td>
+                       <td align="right" valign="top">
+                               <div id="notify"><span id="notify_body"></div>
+                       </td>
+               </tr></table>
+       </td>
+</tr>
+<? } ?>
+<tr>
+       <td id="prefContent" class="prefContent" valign="top" colspan="2">
+               
+               <h1>Fatal Error</h1>
+
+               <div class="bigErrorMsg"><?= $ERRORS[$_GET["c"]] ?></div>
+
+       </td>
+</tr>
+<? if (DISPLAY_FOOTER) { ?>
+<tr>
+       <td class="footer" colspan="2">
+               <a href="http://bah.spb.su/~fox/tt-rss/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005 Andrew Dolgov
+               <? if (WEB_DEMO_MODE) { ?>
+               <br>Running in demo mode, some functionality is disabled.
+               <? } ?>
+       </td>
+</td>
+<? } ?>
+</table>
+
+
+
+</body>
+</html>
+