internal_server_error.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <HTML>
  2. <head><meta charset="UTF-8">
  3. <TITLE>500 Internal Server Error</TITLE>
  4. <BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
  5. <style>
  6. @import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
  7. body {
  8. font-family: 'Open Sans', sans-serif;
  9. color: #444;
  10. font-weight: 300;
  11. text-align: center;
  12. }
  13. h1 {
  14. font-weight: 300;
  15. font-size: 100px;
  16. }
  17. h1 i {
  18. font-style: normal;
  19. display: block;
  20. font-size: 200px;
  21. color:orangered;
  22. }
  23. a:link {
  24. color: orangered;
  25. text-decoration: none;
  26. }
  27. ADDRESS {
  28. font-style: normal;
  29. }
  30. p {
  31. font-size: 20px;
  32. max-width: 800px;
  33. margin: 10px auto;
  34. }
  35. hr {
  36. margin: 20px 20px;
  37. display: block;
  38. }
  39. @media all and (max-width: 700px){
  40. h1 {
  41. font-size: 36px;
  42. }
  43. h1 i {
  44. font-size: 80px;
  45. }
  46. }
  47. </style>
  48. <meta name="viewport" content="width=device-width, initial-scale=1">
  49. </HEAD><BODY>
  50. <H1><i>500</i> Internal Server Error</H1>
  51. <p>
  52. The server encountered an internal error or misconfiguration and was unable to complete your request
  53. .</p>
  54. <p>
  55. Please contact the server administrator to inform of the time the error occurred
  56. and of anything you might have done that may have
  57. caused the error.
  58. </p>
  59. <p>
  60. More information about this error may be available
  61. in the server error log.</p>
  62. <p>
  63. If you want to report this error click <a href="mailto:matschinermax@gmail.com">here</a>.
  64. </p>
  65. <HR>
  66. <ADDRESS>
  67. Web Server at linkom.at, Linkomat GmbH, Goldschlagstraße 110/30, AT-1150 Wien
  68. </ADDRESS>
  69. </BODY>
  70. </HTML>
  71. <!--
  72. - Unfortunately, Microsoft has added a clever new
  73. - "feature" to Internet Explorer. If the text of
  74. - an error's message is "too small", specifically
  75. - less than 512 bytes, Internet Explorer returns
  76. - its own error message. You can turn that off,
  77. - but it's pretty tricky to find switch called
  78. - "smart error messages". That means, of course,
  79. - that short error messages are censored by default.
  80. - IIS always returns error messages that are long
  81. - enough to make Internet Explorer happy. The
  82. - workaround is pretty simple: pad the error
  83. - message with a big comment like this to push it
  84. - over the five hundred and twelve bytes minimum.
  85. - Of course, that's exactly what you're reading
  86. - right now.
  87. -->