Reputation: 1
I have a Python Flask application that is only showing 7 out of 10 pages on my remote server. The other pages are showing
An unexpected error has occurred
I have checked the wsgi status-No error, error.log - no errors and wsgi status.
Is there anywhere else that I could be missing?
Upvotes: 0
Views: 29
Reputation: 2267
Try running your server while activating werkzeug debugger.
You can do it like that:
Option 1:
app.run(debug=True)
Option 2:
app.config['DEBUG']=True
Upvotes: 1