Hiding the Stone Edge Order Status System URL

Below are directions for sending an email to your customers allowing them to check the status of their order using your own URL in the hyperlink.

 

To do this you must:

 

  1. Have a web server with support for ASP (Active Server Pages).

  2. Have a basic knowledge of creating and posting web pages.

 

Steps:

 

  1. Create a new web page in the editor of your choice, even notepad or a similar program.

  2. Copy and paste the code below at the top of the web page.  There should be no carriage returns or line breaks once the code has been pasted.

    <% response.redirect "http://www.stoneedge.net/setistatus/checkstatus.asp?MerchantID=" & Request("MerchantID") & "&OrderNumber=" & Request("OrderNumber") & "&Zip=" & Request("Zip") & "&Phone=" & Request("Phone") & "&email=" & Request("Email") %>
     

  3. Save the page. Give it any name you like, as long as the extension is ".asp". (e.g., "status.asp")

  4. Upload this page to your web site.

  5. From within the Order Manager, go to the Maintenance Menu, click Set System Parameters, and go to the "SETI" group.

  6. Set the "SETIStatusLinkURL" parameter value should be your domain name, the path to the page you created above in step three along with the name of the page you created.  For example, "http://www.mycompany.com/status.asp"

 

Technical Details: