+ Reply to Thread
Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

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

  1. #11
    Senior Member
    Join Date
    Aug 2010
    Posts
    174
    It seems to be working now.

    The only issue I have now with “Listings on Map” plugin - the Google map is not shown under listing details page due to non-secured map, so browser is blocking the content which is not secured.

  2. #12
    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]

  3. #13
    About listings on map problem : open plugins/browseMap/map.tpl find code to load google files and change

    http://maps.googleapis.com


    to

    //maps.googleapis.com

    that means it will use http or https to load resources depending of current scheme. Please apply same same solution to other similar issues you might have, you can see them with any browser debugger (press F12)


    about redirect:



    htaccess - try this code, but remember that browser caches redirects, try different urls or add variables to the url

    Code:
    Only registered members can view the code.


    if you will not have any luck with htaccess
    there should be already redirect as i remember in the plugin (with php) but its 302

    to make it 301 you have to edit database table hooks and find hook with name pageinfoArea

    and make changes

    Code:
    Only registered members can view the code.
    Last edited by Mike; September 20, 2014 at 05:34 AM.

  4. #14
    Senior Member
    Join Date
    Aug 2010
    Posts
    174
    Thank you for suggestion! i guess i will wait for another release of SSL plugin, cause these redirects causing some problems.

  5. #15
    Hi Mike F,

    I have an SSL Cert installed for my domain and would like my whole website to be HTTPS

    I have gone to Admin Panel > Database and run the following command, supplementing {db_prefix} with my SQL db supercar_flynax to no effect

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

    The SSL plugin is still working fine for Admin pages

    website supercars.zone

+ Reply to Thread