Running on an Ubuntu 16.04 LTS system, under Nginx server with WSGI handler wsgihandler.py. Web2py updated to 2.20.4-stable. Using a PostgreSQL database.
Suddenly, I can't navigate to /appadmin nor to /admin/..., get errors like "invalid function (default/index)" remotely over SSL, nor locally. My own application continues to run well.
Had no such problem before, running for several years. Not sure when the problem started since I don't visit /admin that often. On my desktop (running under Rocket) there's no such problem. I have copied the whole directory structure down from the server for comparison, and it is identical to the version that lets me visit /appadmin on my desktop.
It seems like a routing problem, admin/index never seems to get hit, but my routes.py has not changed (my application is 'myapp' here):
routers = dict(
BASE = dict(
default_application='myapp',
)
)
Any clue or hint for where to look will be greatly appreciated.