Question

Photo of Don Smallman

0

By passing SSL

Hi,

Our server is having issues with SSL.  Does anyone know of a way to edit one of the config files to turn off (Force SSL) on the admin portal pages, so that we can continue to make changes while the issues are worked out?

Thanks!
Don

  • Photo of Don Smallman

    0

    If you would like to remove the need for SSL on a page you could use the following SQL if you know the page id:

    UPDATE [Page]

                    SET [RequiresEncryption] = 0

                    WHERE [Id] = <your page id>

    Or if you want all pages to not require SSL you could use:

    UPDATE [Page]

                    SET [RequiresEncryption] = 0