The reason I asked is that I see at least two problems:
1)
auth.settings.register_next = '/myapp/default/myinfo'
should be
auth.settings.register_next = URL('default','myinfo')
or it breaks with routes
2) you mention
form.process(formname='myinfo').accepted
but you says form is an auth form. These two statements are
incompatible because form=auth() includes form.process(). We need see
the action where you call process().
On Nov 28, 11:45 pm, Constantine Vasil <[email protected]> wrote:
> I set the
> auth.settings.register_next = '/myapp/default/myinfo'
>
> After Registration the browser was redirected to myinfo screen
> but at the browser address bar there is: /#/, I expect to be:
> '/myapp/default/myinfo'
>
> Now when I fill out the form and hit Submit
> the line:
> if form.process(formname='myinfo').accepted:
> is not hit and the form cannot process the data and store them
> in the database.
>
> If I hit /myapp/default/myinfo directly or via direct link the form works
> as expected.
>
> What is wrong?