A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/home/rocwiki/sycamore/Sycamore/support/wsgi_server/scgi_base.py in handler(self=<Sycamore.support.wsgi_server.scgi_fork.WSGIServer object>, request=<Sycamore.support.wsgi_server.scgi_base.Request object>) |
427 self._appLock.acquire()
|
428 try:
|
=> 429 result = self.application(environ, start_response)
|
430 try:
|
431 for data in result:
|
result = None, self = <Sycamore.support.wsgi_server.scgi_fork.WSGIServer object>, self.application = <function basic_handle_request>, environ = {'CONTENT_LENGTH': '0', 'DOCUMENT_ROOT': '/home/rocwiki/sycamore/share/web', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT': '*/*', 'HTTP_ACCEPT_ENCODING': 'gzip, br, zstd, deflate', 'HTTP_HOST': 'rocwiki.org', 'HTTP_USER_AGENT': 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Geck...patible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'PATH_INFO': '/The_Penthouse', 'QUERY_STRING': 'sendfile=trueu0026file%3DP1030118.JPGu0026thumb%3Dyesu0026size%3D300', ...}, start_response = <function start_response> |
/home/rocwiki/sycamore/Sycamore/request.py in basic_handle_request(env={'CONTENT_LENGTH': '0', 'DOCUMENT_ROOT': '/home/rocwiki/sycamore/share/web', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT': '*/*', 'HTTP_ACCEPT_ENCODING': 'gzip, br, zstd, deflate', 'HTTP_HOST': 'rocwiki.org', 'HTTP_USER_AGENT': 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Geck...patible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'PATH_INFO': '/The_Penthouse', 'QUERY_STRING': 'sendfile=trueu0026file%3DP1030118.JPGu0026thumb%3Dyesu0026size%3D300', ...}, start_response=<function start_response>) |
1079 return [compressed_content] # WSGI spec wants a list returned
|
1080 else:
|
1081 return req.output_buffer
|
1082 else:
|
=> 1083 return RequestWSGI(env, start_response).run()
|
global RequestWSGI = <class 'Sycamore.request.RequestWSGI'>, env = {'CONTENT_LENGTH': '0', 'DOCUMENT_ROOT': '/home/rocwiki/sycamore/share/web', 'GATEWAY_INTERFACE': 'CGI/1.1', 'HTTPS': 'on', 'HTTP_ACCEPT': '*/*', 'HTTP_ACCEPT_ENCODING': 'gzip, br, zstd, deflate', 'HTTP_HOST': 'rocwiki.org', 'HTTP_USER_AGENT': 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Geck...patible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'PATH_INFO': '/The_Penthouse', 'QUERY_STRING': 'sendfile=trueu0026file%3DP1030118.JPGu0026thumb%3Dyesu0026size%3D300', ...}, start_response = <function start_response>, ).run undefined |