ssl

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
Hi all,

Just a quick question, running tests on the site before deployment but for some reason it's not switching between http (default.aspx) & https (shopping cart.aspx) even though the code in the shoppingcart.aspx.cs file behind says it's enabled.

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Text;
using System.Web;
using System.Web.Caching;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using NopSolutions.NopCommerce.BusinessLogic;
using NopSolutions.NopCommerce.BusinessLogic.SEO;
using NopSolutions.NopCommerce.Common.Utils;

namespace NopSolutions.NopCommerce.Web
{
    public partial class ShoppingCartPage : BaseNopFrontendPage
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            CommonHelper.SetResponseNoCache(Response);

            string title = GetLocaleResourceString("PageTitle.ShoppingCart");
            SEOHelper.RenderTitle(this, title, true);
        }

        public override PageSslProtectionEnum SslProtected
        {
            get
            {
                return PageSslProtectionEnum.Yes;
            }
        }
    }
}


any ideas??????

regards

garrie
13 年 前
Hi,

Solved the problem, it was to do with a certificate that was not installed on my fvs338 firewall.

Regards
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.