My application works fine locally with rocket/SQLlite but on GAE it now fails when a user logs in. It was working previously. The problem appeared when I added an extra field to auth_user. I have now removed this field but the error remains. I do not understand the error log sufficient to know where to start - any suggestions?
ERROR 2013-10-02 04:33:36,354 restricted.py:166] Traceback (most recent > call last): > > File "/Users/andy/www/web2py/gluon/restricted.py", line 217, in > restricted > > exec ccode in environment > > File > "/Users/andy/www/web2py/applications/nurserymgr/controllers/default.py", > line 75, in <module> > > File "/Users/andy/www/web2py/gluon/globals.py", line 371, in <lambda> > > self._caller = lambda f: f() > > File > "/Users/andy/www/web2py/applications/nurserymgr/controllers/default.py", > line 37, in user > > return dict(form=auth()) > > File "/Users/andy/www/web2py/gluon/tools.py", line 1297, in __call__ > > return getattr(self, args[0])() > > File "/Users/andy/www/web2py/gluon/tools.py", line 2364, in login > > self.login_user(user) > > File "/Users/andy/www/web2py/gluon/tools.py", line 1973, in login_user > > user = Row(self.settings.table_user._filter_fields(user, id=True)) > > AttributeError: 'NoneType' object has no attribute '_filter_fields' > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

