Python/Pylons - 会话处理 - 用户会话不再活动
我在我的项目中使用 Pylons 进行会话处理。如果用户会话不再处于活动状态,用户会在 FireBug 上收到 500 服务器错误。现在我想通知用户此会话处于非活动状态,他必须再次登录。
我找不到在哪里检查会话并生成 500 错误。有人有想法吗?
我对会话控制器使用默认的 Pylons 设置 (docs.PylonsProject)
I use Pylons for the Session Handling on my Project. If an user session is not active anymore, the user get a 500 Server Error on FireBug. Now i want inform the user that this session is inactive and that he had to login again.
I can't find where the Session is checked and the 500 Error is generated. Has someone an idea?
I use the default Pylons Settings for my Sessioncontroller (docs.PylonsProject)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 pylon,则您可以编写自己的身份验证代码(或者如果您使用诸如 repoze who&what 之类的东西,则至少修改它)。所以你应该检查你的代码,你把返回 500 错误的代码块放在哪里了。
顺便说一句,我看到您发布了来自 pylonsproject 的链接。 pylonsproject != pylons.
因此,如果您正在使用金字塔(并且您认为您正在使用塔架),您还编写了返回 500 错误的代码。您应该寻找名为“AuthenticationPolicy”之类的类。我在 MYPROJECT/resources.py 中有我的。那里有一个方法“unauthenticated_userid”。你应该看看那里。
如果您发布了您的项目结构,我可以为您提供更多帮助。
If you are using pylons you wrote your own auth code (or at least modify it if you use something like repoze who&what). so you should check your code where did you put that chunk of code that returns 500 Error.
btw i saw that you posted a link from pylonsproject. pylonsproject != pylons.
so if you are using pyramid (and you think you are using pylons) you also wrote a code that returns 500 Error. you should look for class called something like "AuthenticationPolicy". i have my in MYPROJECT/resources.py. there you have a method "unauthenticated_userid". you should look there.
if you posted your project structure i could help you more.