Hi,

I encountered the same error following this tutorial :
http://wiki.pylonshq.com/display/pylonscookbook/Authorization+with+repoze.what

The line which hurts is :
login_counter = request.environ['repoze.who.logins']

It works for me when I replaced that line by :
if 'repoze.who.logins' in request.environ:
    login_counter = request.environ['repoze.who.logins']
else:
    login_counter = 0

Hope this helps,

Bruno


2009/6/30 Vedran Hudec <vedran.hu...@gmail.com>:
> Hi all,
>
> some help needed, I'm thinking of going crazy already. Dropped authkit
> solution because it was no good and you are my last hope before creating my
> own authorization/authentication solution. So, basically it is not working
> :(.
>
> In more words, the last error message is "wrong credentials" - for some
> unknown reason the application can not contact DB. After playing (some
> days), I gave up and decided to move on, maybe there is some stupid error
> which I haven't seen.
>
> Then I changed user/group/permission from declarative class definition to
> table + class + orm mapping and now I've a following error:
>
> TypeError: _get_password() takes exactly 1 argument (2 given). The error
> itself occurs on this line in websetup.py:
>      foo.password = u'foo'  ->
>
> Error is solvable if _get_password function is defined as
> _get_password(self, nothing=None). The bad thing of all is that in DB in
> user table, all passwords fields are empty.
>
> And for last most confusing is this...when I click on a link pointing to
> "Sign in" page I get an error "KeyError: 'repoze.who.logins'". Has anybody
> have any idea why is this happening?
>
> Best regards,
> Vedran
>
>
> _______________________________________________
> Repoze-dev mailing list
> Repoze-dev@lists.repoze.org
> http://lists.repoze.org/listinfo/repoze-dev
>
>



-- 
Bruno Binet

Camptocamp France SAS
Savoie Technolac, BP 352
73377 Le Bourget du Lac, Cedex

Mail : bruno.bi...@camptocamp.com
http://www.camptocamp.com
_______________________________________________
Repoze-dev mailing list
Repoze-dev@lists.repoze.org
http://lists.repoze.org/listinfo/repoze-dev

Reply via email to