How can I logout a user without bringing up the login/password screen right now I'm using <a href="manage_zmi_logout"> thanks, David
David Siedband wrote at 2003-7-10 15:29 -0700:
How can I logout a user without bringing up the login/password screen
You cannot when you use Basic Authentication (as you seem to do). Would you use Cookie Authentication, you would expire the authentication cookie. More info <http://www.dieter.handshake.de/pyprojects/zope/book/chap3.html> Dieter
How can I logout a user without bringing up the login/password screen
right now I'm using
<a href="manage_zmi_logout">
Unless you use one of the cookie-based login schemes you can't really. It's just the nature of HTTP authentication. Well, you could make your users restart their browsers, but that's not very nice. --jcc
participants (3)
-
David Siedband -
Dieter Maurer -
J Cameron Cooper