On Friday, October 19, 2018 at 9:38:04 AM UTC-4, sandeep patel wrote:
>
> Try this
> def index():
>     form=SQLFORM(db.vehicleLogging)
>     if form.process().accepted:
>         response.flash = T("Record Made")
>     elif form.errors:
>         response.flash = T('Error')
>     return locals()
>
> In *form.process().**accepted *does not need request.vars and session 
> arguments.
>

Note, form.process().accepted is equivalent to form.accepts(request, 
session), so if one fails, so will the other.

If the submission is failing silently, most likely the verification of the 
CSRF token is failing, which could indicate a problem with the session 
cookie not being sent back.

Anthony

-- 
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/d/optout.

Reply via email to