Hi There,

I have got godaddy's Turbo Standard SSL installed properly on my hosted site. The SSL status shows "Active". But, when I enable SSL on the web site thru Administration, when I click on the "Log in" link, browser is redirected to "http://mysite.com/False/Login.aspx" which errors out with Page Not Found. When I disable SSL, Login.aspx works fine. If I type the secured url (https://mysite.com/login.aspx) manually with SSL Disabled, page comes up fine. I have no idea what's going on. This code in the EnsureSSL method in CommonHelper.cs seems to be troublesome:

if (SettingManager.GetSettingValueBoolean("Common.UseSSL"))
{
     if (!HttpContext.Current.Request.Url.IsLoopback)
     {
          ReloadCurrentPage(true);
     }
}

Please help.

Regards,

guddu