Announcement

Collapse
No announcement yet.

automatic login

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    automatic login

    Is there any way that customers can automatically login next time they visit, to save them typing the username and password information again?

    Perhaps the use of persistent cookies?

    #2
    Is there any way that customers can automatically login next time they visit, to save them typing the username and password information again?
    Not at the moment. It would need an option for the user to select as it wouldn't be a good idea on shared machines. I'll add it to the wishlist.

    Ben
    Ben Popplestone
    Ecommerce website software

    Comment


      #3
      Hmmm... Well... You can do this globally by editing ACTINIC.pm. Just find the line
      Code:
      print "Set-Cookie: ACTINIC_BUSINESS=" . $sBusinessCookie . 
                       "; PATH=/;\r\n";
      in sub PrintHeader and change it to
      Code:
      print "Set-Cookie: ACTINIC_BUSINESS=" . $sBusinessCookie . 
                       "; EXPIRES=" . $sExpiry . "; PATH=/;\r\n";
      As Ben has already said this is a non secure solution and should be avoided. Also the general rule about script customisation does stand (Actinic doesn't support customised scripts).

      Regards,
      Zoltan
      Actinic Software
      www.actinic.co.uk

      Comment

      Working...
      X