How can I turn off SSL for some Administration pages?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 Jahre weitere
I need to turn off SSL for some pages in the Admin.
I tried this but the page wouldn't display after I did it :

      

  protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
                CommonHelper.EnsureNonSsl();



This works if I do it for a page in the web store but doesn't work in the Admin :

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

        }


Is there any easy way to turn off SSL on some (or all) of the Admin pages?  Thanks

.
12 Jahre weitere
No. It needs some customization
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.