7b. Or open the admin app/database administration and look at the field auth_user.reset_password_key. There is the same key - enter this key http://<your_server>/welcome/default/user/reset_password/<reset_password_key>
8. w2p 2.9.6 answers with a form for the new password,
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com, mwei...@gmail.com
Ahh yes I see the problem. Tried to figure out what was going on, but the code has too many redirects for my head too.
Ricardo Pedroso
unread,
Sep 12, 2014, 6:07:36 PM9/12/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
I sent a pull request that, I think, fix this issue.
You can try it by change line 3014 on gluon/tools.py
if not key and len(request.args)>0:
to
if not key and len(request.args)>1:
Ricardo
On 9/12/14, Leonel Câmara <leonel...@gmail.com> wrote:
> Ahh yes I see the problem. Tried to figure out what was going on, but the
> code has too many redirects for my head too.
>
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
This change does the job - works fine. Thank you.
--
Mit freundlichen Grüßen / With kind regards Martin Weissenböck Gregor-Mendel-Str. 37, 1190 Wien Austria / European Union
Leonel Câmara
unread,
Sep 13, 2014, 6:47:20 AM9/13/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com, mwei...@gmail.com
Well spotted Ricardo that is indeed the problem.
However this is still wrong imho. This assumes that reset password is being called in a controller like the "def user" one in the welcome application and so reset_password will be request.args(0) and the key will be request.args(1), however one could make a controller where that's not true. We should just remove the key from args altogether and just use it in the vars to avoid this problem.