Page 1 of 1

SSL helper

Posted: Mon Oct 27, 2008 10:30 am
by frosty
Is there some kind of SSL Helper. ie i have a new page

mydomain.com/mydir/payment.aspx

just wondering if there is some setting in able that manages which pages have to be secure

Re: SSL helper

Posted: Mon Oct 27, 2008 10:34 am
by Shopping Cart Admin
Hello,

You can add it to /App_Data/ablecommerce.config

Code: Select all

  <securePages enabled="true" ignoreHandlers="WithStandardExtensions">
    <directories>
      <add path="Admin" recurse="true" />
      <add path="Members" recurse="true" />
      <add path="Checkout" recurse="true" />
      <add path="FCKeditor" recurse="true" state="Ignore" />
    </directories>
    <files>
      <add path="Login.aspx" />
      <add path="mydir/payment.aspx" />
      <add path="Members/MyWishlist.aspx" state="Off" />
      <add path="Members/SendMyWishlist.aspx" state="Off" />
      <add path="Admin/Utility/EditHtml.aspx" state="Ignore" />
    </files>
  </securePages>

Re: SSL helper

Posted: Mon Oct 27, 2008 12:47 pm
by frosty
cool, thanks.