Page 1 of 1
HOW TO USE SSL LINK?
Posted: Tue Mar 01, 2011 12:01 pm
by danny
Hi,
I want to use SSL for specific link as below.
https://test.com/customer/PaymentHistory.aspx
but, when I click link above, Ablecommerce redirect automatically to
http://test.com/customer/PaymentHistory.aspx.
How to use SSL link?
Thank you.
Re: HOW TO USE SSL LINK?
Posted: Fri Mar 04, 2011 3:48 am
by mazhar
Re: HOW TO USE SSL LINK?
Posted: Fri Mar 04, 2011 1:32 pm
by mikek
Hello,
You may have to add "customer" folder into the App_Data/ablecommerce.config file. Below are the ssl folders included by default.
<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" />
<add path="App_Themes" recurse="true" state="Ignore" />
<add path="Assets" recurse="true" state="Ignore" />
<add path="images" recurse="true" state="Ignore" />
<add path="js" recurse="true" state="Ignore" />
<add path="webcharts" recurse="true" state="Ignore" />
</directories>
<files>
<add path="Login.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>