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.
HOW TO USE SSL LINK?
Re: HOW TO USE SSL LINK?
Read following topic.
http://help.ablecommerce.com/mergedProj ... ttings.htm
http://help.ablecommerce.com/mergedProj ... ttings.htm
Re: HOW TO USE SSL LINK?
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>
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>
Mike Kolev