Forums

Your webapp took a long time to reload. It probably reloaded, but we were unable to check it.

I get this message when trying to reload my flask web app. However, when I open the link, the website is just constantly stuck in a loading phase and does not open. The only thing in my error logs is this: Try open http://127.0.0.1:59055 in web browser. Can someone help?

It sounds like you're running Flask's debug server by calling app.run() inside your code -- you don't need to do that on PythonAnywhere, or in any production environment; it's only needed when you're debugging your site on your own computer. Check out this help page.