> > Bad news is that I still can't log into the application. > I'm now getting 'Invalid Login' when I try to login after verifying > the registration. Grr.. >
This line: auth = Auth(db, hmac_key=Auth.get_or_create_key()) reads the auth hmac_key from the "auth.key" file in the /private folder, and it creates the file with a new key if it doesn't already exist. Is it possible that the file was deleted sometime after the original registration? In that case, it would be re-created with a new key, but passwords created with the old key would no longer work. Anthony

