[web2py] Re: Problems with user_signature=True in URL( )

2015-12-25 Thread Jes M
Thanks for your answers Massimo and Anthony. I'll try again and share the full piece of related code if it continues to fail. Best regards Jes -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: Problems with user_signature=True in URL( )

2015-12-24 Thread Anthony
I cannot reproduce the problem with the code you have shown (works fine for me). The problem probably lies elsewhere. Maybe attach a minimal app that demonstrates the problem (along with the login credentials of a dummy user for testing purposes). Anthony On Thursday, December 24, 2015 at

[web2py] Re: Problems with user_signature=True in URL( )

2015-12-24 Thread Anthony
On Thursday, December 24, 2015 at 9:24:48 AM UTC-5, Massimo Di Pierro wrote: > > I am sorry, I cannot figure out exactly what you are doing but I see a > possible problem. You cannot use @auth.requires_signature() and > SQLFORM.grid(user_signature=True) at the same time because the grid would

[web2py] Re: Problems with user_signature=True in URL( )

2015-12-24 Thread Massimo Di Pierro
I am sorry, I cannot figure out exactly what you are doing but I see a possible problem. You cannot use @auth.requires_signature() and SQLFORM.grid(user_signature=True) at the same time because the grid would use its own URL signature and that is not the same expected by the decorator. On