Hello again, I'm having some trouble with my model less aproch with auth module. I've put him on a separeted file on modules folder, and, when needed, I import it as follows:
modules/web2py/auth.py: auth = Auth(db, hmac_key=Auth.get_or_create_key()) controllers/tracking.py: from applications.main.modules.web2py.auth import auth But some times (its not every time) when I try to loggin, the form just don't validate and don't pass through the login/password for checking (I'm also using the default login form from docs). Maybe this have some relation with imports being done only once on appengine? And, if is it, what can I do about (since not every page on my app needs auth) Thanks --