On Mar 13, 2011, at 5:19 PM, pbreit wrote:
> Sounds like the problem is with your route changes. I think the 
> routes_onerror needs to be inside of the routers dict. Make sure to restart 
> web2py after you edit routes.py.
> 
> routers = dict(
> 
>     BASE = dict(
>         routes_onerror = [
>                 (r'*/400', r'/init/default/doesnotexist'),
>                 (r'*/404', r'/init/default/doesnotexist'),
>                 (r'init/*', r'/init/default/error')
>         ]
> )
> 

No, it's outside as usual. I tried a recreation of Matt's configuration, and 
it's working OK for me. So something's different.

Matt, does it work if you turn off routing? Rename routes.py to something else, 
temporarily?

Reply via email to