Hello web2py
i need to allow admin on web2py development machine , which we testing with
uwsgi enabled. It is needed to test over the internet coz our client is
from different country.
We tried enabling by disabling following code inside
if request.env.http_x_forwarded_for or request.is_https:
session.secure()
elif not request.is_local and not DEMO_MODE:
raise HTTP(200, T('Admin is disabled because insecure channel'))
but it ends up to the login page .. WITHOUT Password box , Damn..
What to do?
--