unauthorized.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  2. <HTML>
  3. <HEAD>
  4. <TITLE>401 Authorization Required</TITLE>
  5. <BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
  6. </HEAD>
  7. <BODY>
  8. <H1>Authorization Required</H1>
  9. <P>This server could not verify that you
  10. are authorized to access the document
  11. requested. Either you supplied the wrong
  12. credentials (e.g., bad password), or your
  13. browser doesn't understand how to supply
  14. the credentials required.</p>
  15. <HR />
  16. <ADDRESS>
  17. Web Server at linkom.at
  18. </ADDRESS>
  19. </BODY>
  20. </HTML>
  21. <!--
  22. - Unfortunately, Microsoft has added a clever new
  23. - "feature" to Internet Explorer. If the text of
  24. - an error's message is "too small", specifically
  25. - less than 512 bytes, Internet Explorer returns
  26. - its own error message. You can turn that off,
  27. - but it's pretty tricky to find switch called
  28. - "smart error messages". That means, of course,
  29. - that short error messages are censored by default.
  30. - IIS always returns error messages that are long
  31. - enough to make Internet Explorer happy. The
  32. - workaround is pretty simple: pad the error
  33. - message with a big comment like this to push it
  34. - over the five hundred and twelve bytes minimum.
  35. - Of course, that's exactly what you're reading
  36. - right now.
  37. -->