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
SSL helper
- Shopping Cart Admin
- AbleCommerce Admin
- Posts: 3055
- Joined: Mon Dec 01, 2003 8:41 pm
- Location: Vancouver, WA
- Contact:
Re: SSL helper
Hello,
You can add it to /App_Data/ablecommerce.config
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
cool, thanks.