+ Reply to Thread
Results 1 to 10 of 15

Thread: SSL Protection - Plugin (big change on Google)

Hybrid View

  1. #1
    Senior Member
    Join Date
    Aug 2010
    Posts
    174
    Mike,

    How can I "Undo" this command after?

    UPDATE `fl_pages` SET `Https` = '1' WHERE 1

    Fyi, I'm having issue with "add-listing" page (result in 404) after i run this command.
    Last edited by PGGO; September 19, 2014 at 03:14 AM.

  2. #2
    Thank you for sharing your thoughts, i see that others need this option too. So we will add it to the next plugin update:

    We will add Option to plugin configurations , this option will allow to enable HTTPS for all front end pages of website
    (HTTPS for Admin Panel will stay under another existing already option).

    Please note that if you enable this option you will be not able to disable it for a particular page.




    Quote Originally Posted by PGGO View Post
    Mike,

    How can I "Undo" this command after?

    UPDATE `fl_pages` SET `Https` = '1' WHERE 1

    Fyi, I'm having issue with "add-listing" page (result in 404) after i run this command.
    Please create a ticket or provide me with details to check this issue, its probably because of urls customization. To disable Https for a page you can with Pages Manager>Edit page>>SSL Secured page -- disable.

    to disable for all pages you can run the query

    UPDATE `fl_pages` SET `Https` = '0' WHERE 1

  3. #3
    Senior Member
    Join Date
    Aug 2010
    Posts
    174
    Mike, can you please provide some guide on how to handle 301 redirects from "http" to "https" for all urls?

    I added two lines of code (see below) to my .htaccess, however it does not redirect properly - it redirects to 403 instead as the following: "https://www.mysite.com/index.php?page=page"


    # SSL 301
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [NC,L,R=301]

+ Reply to Thread