I have a 1&1 Ionos server running Python. For some reason, the entire thing breaks when I try to make changes, even extremely simple changes. For example, I had this code in my main Python file: (I am running Python Flask)
@app.route("/")
def home():
return "hi"
This worked 100%. However, when I changed it to this:
@app.route("/")
def home():
a = "hi"
return a
This breaks.
Why? Does IONOS's python server not have the ability to handle variables and other simple things, or is their some way around this?
Edit: By break, I mean it goes to the sedo parking page instead of my page.