Internal Server Error (HTTP 500)

{{ if [error_for_error] }}

Error page for error page

An error occurred on the server during the processing of your request

Additionally, another error was encountered while trying to render a helpful error page. Below are both the error we encountered, and the original one we tried to tell you about.

{{ else }}

An error occurred on the server during the processing of your request

Here's what we know went wrong, though we still have to figure out why:

{{ endif }}

[exc:type]

[exc:value]

Traceback (most recent call first)

    {{ for frame in [exc:traceback] }}
    • File: "[frame:file]"
    • Scope: [frame:scope]
    • {{ for filename, line_no in [frame:source] }} {{ endfor }}
      Source code
      [filename][line_no]
    • {{ if not [error_for_error] }}
    • {{ for name, value in [frame:locals|items|sorted] }} {{ endfor }}
      Frame locals
      [name]{{ if type([value]) == str}}"[value]"{{else}}[value]{{endif}}
    • {{ endif }}
  1. {{ endfor }}
{{ if [error_for_error] }}

Original error (that the error page broke on)

[orig_exc:type]

[orig_exc:value]

Traceback (most recent call first)

    {{ for frame in [orig_exc:traceback] }}
    • File: "[frame:file]"
    • Scope: [frame:scope]
    • {{ for filename, line_no in [frame:source] }} {{ endfor }}
      Source code
      [filename][line_no]
  1. {{ endfor }}
{{ endif }}

Environment information

{{ if [cookies] }} {{ for name, value in [cookies|items|sorted] }} {{ endfor }}
Cookies
[name][value]
{{ endif }} {{ if [query_args] }} {{ for name, value in [query_args|items|sorted] }} {{ endfor }}
Query arguments (GET)
[name][value]
{{ endif }} {{ if [post_data] }} {{ for name, value in [post_data|items|sorted] }} {{ endfor }}
POST data
[name][value]
{{ endif }} {{ if [environ] }} {{ for name, value in [environ|items|sorted] }} {{ endfor }}
Full environment
[name][value]
{{ endif }}