errors.php 873 B

12345678910111213141516171819202122232425262728
  1. <?
  2. $ERRORS[0] = "Unknown error";
  3. $ERRORS[1] = "This program requires XmlHttpRequest " .
  4. "to function properly. Your browser doesn't seem to support it.";
  5. $ERRORS[2] = "This program requires cookies " .
  6. "to function properly. Your browser doesn't seem to support them.";
  7. $ERRORS[3] = "Backend sanity check failed";
  8. $ERRORS[4] = "Frontend sanity check failed.";
  9. $ERRORS[5] = "Incorrect database schema version.";
  10. $ERRORS[6] = "Request not authorized.";
  11. $ERRORS[7] = "No operation to perform.";
  12. $ERRORS[8] = "Could not display feed: query failed. Please check label match syntax or local configuration.";
  13. $ERRORS[8] = "Denied. Your access level is insufficient to access this page.";
  14. $ERRORS[9] = "Configuration check failed";
  15. $ERRORS[10] = "Your version of MySQL is not currently supported. Please see
  16. official site for more information.";
  17. ?>