Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: Receipt URL not https

  1. #1
    olakay is offline Junior Member
    Join Date
    Nov 2010
    Posts
    4

    Default Receipt URL not https

    The URL to view the reciept in the order notification for both admin and customer is not appended with https. This make the link go to access forbidden page.
    Everything is set to https on the site.

    Please help. Thanks

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    You can just hard-code the https directly into {root}/xmlpackages/notification.receipt.xml.config and notification.adminneworder.xml.config files. Follow this code below:

    from:
    Code:
    <a href="{/root/System/StoreUrl}receipt.aspx?ordernumber={/root/Runtime/ordernumber}&amp;customerid={customerid}">
    to:
    Code:
    <a href="https://yoursite.com/receipt.aspx?ordernumber={/root/Runtime/ordernumber}&amp;customerid={customerid}">