SSL helper

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
frosty
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 32
Joined: Thu Jul 24, 2008 3:22 am

SSL helper

Post by frosty » Mon Oct 27, 2008 10:30 am

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

User avatar
Shopping Cart Admin
AbleCommerce Admin
AbleCommerce Admin
Posts: 3055
Joined: Mon Dec 01, 2003 8:41 pm
Location: Vancouver, WA
Contact:

Re: SSL helper

Post by Shopping Cart Admin » Mon Oct 27, 2008 10:34 am

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>
Thanks for your support

Shopping Cart Guru
AbleCommerce.com
Follow us on Facebook

frosty
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 32
Joined: Thu Jul 24, 2008 3:22 am

Re: SSL helper

Post by frosty » Mon Oct 27, 2008 12:47 pm

cool, thanks.

Post Reply