Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: Password Expiring

  1. #1
    sduffy77 is offline Senior Member
    Join Date
    Feb 2010
    Location
    Lancaster, PA
    Posts
    142

    Default Password Expiring

    Is there any way to turn off the Password Expiring functionality?

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    You can increase(appconfig: AdminPwdChangeDays) the number of days though, but you can't disable it out of the box.

  3. #3
    esedirect is offline Senior Member
    Join Date
    Feb 2010
    Location
    Norfolk, UK
    Posts
    343

    Default

    Of course you can. Write a trigger that is fired on some common event, say creating a new customer, which resets the pwdchanged date!

    Or, if you have access to your server, you can set up a scheduled task to run daily. Either way the SQL you'd need is:

    UPDATE [Customer]
    SET [LockedUntil] = NULL,
    [PwdChanged] = GETDATE(),
    [BadLoginCount] = 0,
    [LastBadLogin] = NULL,
    [PwdChangeRequired] = 0
    WHERE [Email] LIKE '%your-domain-name-here'
    Last edited by esedirect; 01-21-2011 at 02:33 AM.
    http://www.esedirect.co.uk
    --------------------------------------------------------------------------
    Using MS 9.2.0.0 with the following customisations:

    Lightbox/Fancybox enlarged images;
    Auto-suggest searchbox;
    Extra product information shown only to our IP Address (such as supplier info, costs, etc.);
    Failed transactions emailed via trigger;
    Custom app to show basket contents when customer online;
    Orders pushed through to accounting systems.

    All the above without source!