Hello pyloners!

I have a problem with my Pylons (0.9.7beta5) and AuthKit (0.4.0)
setup. I configured AuthKit in my `development.ini` as follows:

    authkit.setup.enable = True
    authkit.setup.method = forward, cookie
    authkit.forward.internalpath = /auth/signin
    authkit.cookie.signoutpath = /auth/signout
    authkit.cookie.secret = secret cookie string
02788123458765823892374

Then, there's an (unprotected) `AuthController` with a `signin`-
method, that just renders a form, and a protected `BridgeController`:

    class BridgeController(BaseController):
        def index(self):
            return render('bridge.html')

    BridgeController = middleware(BridgeController(), RemoteUser())

When I visit `http://localhost:5000/bridge`, I get an

    AssertionError: Forwarding loop detected; '/auth/signin' visited
twice
    (internal redirect path: ['/bridge', '/auth/signin'])

But I can reach `/auth/signin` directly without any problems. What am
I missing?

Thank you & greetings!
Daniel

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to