我有习惯登记BrowserView,你必须提供一些用户数据(z3c.与包括密码在内的一些领域的情况)。 在成功保存这些数据之后,用户就希望自动登录,并转往网站的另一页。
事先感谢背心
我有习惯登记BrowserView,你必须提供一些用户数据(z3c.与包括密码在内的一些领域的情况)。 在成功保存这些数据之后,用户就希望自动登录,并转往网站的另一页。
事先感谢背心
因此,我的工作解决办法(指出朝正确方向努力的奇科):
1. 认证贵国在考绩制度中的注册资格
member = portal.acl_users.authenticate(username, password, portal.REQUEST)
转而指示它为确定认证 co而 ne。 你可以通过“最新指数”来做到这一点(见pas/plugins/cookie_handler)。
if member:
portal.acl_users.updateCredentials(portal.REQUEST, portal.REQUEST.RESPONSE, username, password)
页: 1
portal.REQUEST.RESPONSE.redirect(url)
如果你想扩大新成员的用户数据,并在登记表中增加新的领域,则可能最好扩大提供缺省用户数据表的效用,并且这样做,使你能够顺利地掌握在现有登记机制中。
有一个例子: Collection.examples.userdata,你可以为此目的使用并推广。 它还有很好的文件,向你们解释了所有必要的步骤。
I installed this instant messenger program called IM+ that keeps your accounts online even when you exit the application (you know... touch: only one app at a time) it accepts push deliveries to ...
I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...
Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the ...
The infrastructure team wants to update the authentication protocol to NTLMv2 and Kerberos. Will this affect CRM 4.0 on-premise installation. What would need to be changed in order to use the ...
I m developing an ASP.NET MVC site that utilizes forms authentication for part of the application. During development, I need to be able to give external parties access to a development server hosting ...
If I have a type like: public class Context { public Context() { } public IQueryable<Record> Records { get { if (user == someone) //psuedocode ...
We recently attempted to add ip address validation to our website s login security. So in addition to having a cookie with valid credentials, we checked that your ip address on page request matched ...
While looking into forms authorizing/authentication, I found that it is possible to do role based authorizing by adding an array of roles to a FormsAuthenticationTicket. That way I can write User....