an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > Upgrading the forgot password module with out u...
Last Post 3/5/2010 10:38:32 AM By lukezy. 2 replies.
3/5/2010 10:23:30 AM
bansal_db
Posts: 181
Joined: 4/13/2009
Upgrading the forgot password module with out upgrading the whole site
Hey Luke,
 
I just want to upgrade the forgot password module to 4.0 and not the whole site because of customizations. The new module doesnot ask for security question. It straight away sends the password to user email. Is there a way to upgrade just that?
 
Thanks
 
-D
3/5/2010 10:36:16 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Upgrading the forgot password module with out upgrading the whole site
It's just a configuration setting in  web.config .
 
 

        <membership defaultProvider="SqlMembershipProvider" userIsOnlineTimeWindow="15" hashAlgorithmType="SHA1">

            <providers>

                <clear/>

                <add name="SqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" applicationName="DotShoppingCart" connectionStringName="dsc" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" passwordAttemptWindow="10" passwordStrengthRegularExpression="" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0"/>

            </providers>

        </membership>

DotShoppingCart Staff
3/5/2010 10:38:32 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Upgrading the forgot password module with out upgrading the whole site
You also need to update Register.ascx to ask the security question.
DotShoppingCart Staff