Rank: Member
Joined: 7/7/2009(UTC) Posts: 4
|
with the following: Code: SiteStandardRoot = www.bigfoothd.com/ SiteSecureRoot = www.bigfoothd.com/ UseSSL = 1
the site runs but nothing is redirected to https. trying this: Code: SiteStandardRoot = http://www.bigfoothd.com/ SiteSecureRoot = https://www.bigfoothd.com/ UseSSL = 1
throws all secure pages (any login, backend, checkout) into an infinite loop where for example https://www.bigfoothd.com/checkout/checkout.aspx (when clicking "checkout" from the http shopping cart) is returned as: Code: <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="https://www.bigfoothd.com/checkout/checkout.aspx">here</a>.</h2> </body></html>
additionally trying: Code: SiteStandardRoot = http://www.bigfoothd.com/ SiteSecureRoot = https://www.bigfoothd.com/ UseSSL = 0
never redirects anything to https at all.
|
|
|
|
Rank: Member
Joined: 9/20/2006(UTC) Posts: 92
|
This should work if you have the SSL Cert installed and configured properly. [code] SiteStandardRoot = http://www.bigfoothd.com/SiteSecureRoot = https://www.bigfoothd.com/UseSSL = 1 Note: Turning on the SSL option before you have a properly configured SSL Certificate can throw the SSL redirect routine into an infinite loop and effectively lock you out of the admin. [color=gray> <HR] [/color] Wallace Miller -- Narrowpath Design
Providing installation, custom development, and design services for BVC5 sites 24/7 tech support and consultation service available for BVSoftware E-Commerce 760.728.8679 (phone) [email protected]
|
|
|
|
Rank: Member
Joined: 7/7/2009(UTC) Posts: 4
|
Originally Posted by: "Narrowpath Design" This should work if you have the SSL Cert installed and configured properly. Code: SiteStandardRoot = http://www.bigfoothd.com/ SiteSecureRoot = https://www.bigfoothd.com/ UseSSL = 1
Note: Turning on the SSL option before you have a properly configured SSL Certificate can throw the SSL redirect routine into an infinite loop and effectively lock you out of the admin. SSL should be properly configured, if I set UseSSL = 0 and just manually goto say: htps://www.bigfoot.com/bvadmin/ I get a blue bar in Firefox, and: Code: Website Identity Website: www.bigfoothd.com Owner: This website does not supply ownership information. Verified by: The USERTRUST Network
|
|
|
|
Rank: Member
Joined: 7/7/2009(UTC) Posts: 4
|
turns out that the host we're running on, Rackspace Cloud, has a front end that strips all ssl from incoming requests for load balancing and performance. As a result, none of the asp.net Request.* methods for determining SSL will ever work, and they provide a workaround:
Request.ServerVariables("HTTP_CLUSTER_HTTPS") <> "on"
|
|
|
|
Rank: Member
Joined: 2/21/2007(UTC) Posts: 1,113
|
Judging from this and your other post -- you are attempting to make an ecommerce platform (BV) fit your host -- that almost always inherently means trouble. If you want to use BV, then you should look at an experienced BV5 host. |
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.