On Jun 15, 9:09 am, Tino Breddin <[email protected]> wrote:
> Hi,
>
> I followed the instructions given in the Pylons book [1], but when I'm
> trying to access a secured page the server shows an internal error
> with this [2] stacktrace. I'm new to Pylons and couldn't figure out
> what's wrong. Did anybody solve this before?
>
> Cheers,
> Tino
>
> [1]http://pylonsbook.com/en/1.0/simplesite-tutorial-part-3.html#styling-...
> [2]http://pastie.org/512635

request -> auth middleware -> ...other middleware... -> PylonsApp

c gets registered for the current request/thread in PylonsApp, but
PylonsApp will never be reached if AuthKit intercepts the request.
Possible solutions:

* Don't use c
* Register c manually (??? never tried this)
* Put data in session instead of c
--~--~---------~--~----~------------~-------~--~----~
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