Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Gordon Saxby 1461 posts 1883 karma points
    Oct 06, 2012 @ 13:57
    Gordon Saxby
    0

    setup of secure https section

    I am using SecuritySwitch  (http://code.google.com/p/securityswitch/) to enable and switch in and out of HTTPS.

    It all works fine, however I am getting the "partialyy encrypted" error. I have tried using the full path starting with https but it still seems to access images using http as well!?

    Is this a problem caused by Umbraco redirecting to the page url? Has anyone got a fully working https section on an Umbraco website?

  • Xander 7 posts 38 karma points
    Jun 05, 2013 @ 06:10
    Xander
    0

    this may not be the case for you, but i previously had to set rules to ignore static content paths in by web.config.

    <securitySwitchmode="On"xmlns="http://SecuritySwitch-v4.xsd"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="SecuritySwitch-v4.xsd">
       
    <paths>
    ...
         
    <addpath="~/images/"security="Ignore"  />
         
    <addpath="~/css/"  security="Ignore"/>
         
    <addpath="~/scripts/"  security="Ignore"/>
         
    <addpath="~/js/"  security="Ignore"/>
    ...

       
    </paths>
     
    </securitySwitch>

    if the requested page is using https, the static content will also use https.
    if it's using http then the static content will use http as well.
    note: this wasn't on an Umbraco site.

Please Sign in or register to post replies

Write your reply to:

Draft