Hello,

i have just add the new version of the fbmembership provider.

This new version is currently in beta. It uses stored procedures and i 
have correct some bug like case sensitive on email and username. I have 
also add this functionality "PasswordStrengthRegularExpression".

The  new provider is fbmembershipProvider2 and to install it run the 
FirebirdMemberShipProvider2.sql script on the database  (it is on the 
cvs) and modify your web.config.
this is an exemple of web.config :
<membership defaultProvider="FirebirdMembershipProvider" 
userIsOnlineTimeWindow="15">
                        <providers>
                                <clear/>
                                <add name="FirebirdMembershipProvider" 
type="FirebirdSql.Web.Providers.FbMembershipProvider2" 
connectionStringName="MYCONN" enablePasswordRetrieval="true" 
enablePasswordReset="true"  passwordFormat="Clear" 
requiresUniqueEmail="true" applicationName="MYAPP" 
minRequiredPasswordLength="6" passwordAttemptWindow="4" />
      </providers>
                </membership>

If you are using the old version of the fbmembership provider and if 
you want to use the new you must do some update :
 1 - Modify the ddl of the users table with the new ddl (the new ddl is 
in FirebirdMemberShipProvider2.sql)
 2 - execute this :
UPDATE USERS SET upperemail = upper(email), 
upperusername=upper(username), PASSWORDFORMAT = 0;
The password format is 0 for clear 1 for hashed and 2 for encrypted so 
you can modify this update whith your passwordformat.

you can send your test result please :)



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to