You'll need to add your own mechanism to confirm the member and update, for instance, a bool property on the member, and then in your login routine, check that value and act on it. Pretty much in the same way as you would in any ASP.NET Membership scenario.
The Member table(umbraco) has only the following fields as Email,login name,and password.. but i have an extra field confirm member(checkbox in umbraco).. i dont konw where the value of checkbox gets stored.. and how do i check whether the member is confirmed by the administrator while they login..
Next you should build that and put it into the bin directory
Lastly you should modify your web.config to the following (outcomment the standard membership provider and put this in right below, this way you can always go back if needed).
umbraco
How to check for confirmed member while login using the default member table in umbraco...
You'll need to add your own mechanism to confirm the member and update, for instance, a bool property on the member, and then in your login routine, check that value and act on it. Pretty much in the same way as you would in any ASP.NET Membership scenario.
BR
Stephan
The Member table(umbraco) has only the following fields as Email,login name,and password.. but i have an extra field confirm member(checkbox in umbraco).. i dont konw where the value of checkbox gets stored.. and how do i check whether the member is confirmed by the administrator while they login..
Hello SS
You do not have to know where the value gets stored because the api will take care of this for you.
If you look at the following tutorial then you should be able to do it.
First you should create a class with your own namespace etc which will override the Umbraco validateuser method like this:
Next you should build that and put it into the bin directory
Lastly you should modify your web.config to the following (outcomment the standard membership provider and put this in right below, this way you can always go back if needed).
Scott
is working on a reply...