jsruano Posted December 20, 2024 Posted December 20, 2024 I am trying to execute a .py file with Python and this error message arises: Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Apparently it's an error from Heliohost's hosting service. Quote
wolstech Posted December 20, 2024 Posted December 20, 2024 I see an internal server error for the scripts on your account, not a 503. The test.py works fine. What are you trying to execute? Also, keep in mind for Python that the script must have a shebang line, must use unix line endings and, at minimum, must be coded to emit a content type header in order for it to not throw an error. The errors in your logs are "End of output before headers", which suggests the code is either not coded to send headers, or is crashing before it can do so (though there's often other errors shown if that's the case...). Your files are also missing their shebang lines. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.