• I like the plugin and its features however google analytics cache does not work on sit with https protocol as it is loading cached analytics file over http protocol that is blocked by the browser hence results in failure.

    Please look into this matter asap.

    Also I would like to suggest an option for lazy load images to be added into the plugin under performance section.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author webcraftic

    (@webcraftic)

    Hi,

    I think your wordpress simply cannot determine that you are using SSL. Our plugin does not have hard-coded links, the protocol is taken from the WordPress core schemes.

    There is one trick to make your WordPress always define ssl, just add this code to your wp-config.php:

    /*
    in some setups HTTP_X_FORWARDED_PROTO might contain 
    a comma-separated list e.g. http,https
    so check for https existence
    */
    if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false) {
           $_SERVER['HTTPS']='on';
    }

    This should solve the problem.

    We are now completing a big update, I think in the next update, and we will add additional tools, including lazy loading of images.

    Best regards, Alex

Viewing 1 replies (of 1 total)
  • The topic ‘Google Analytics cache do not work on HTTPS’ is closed to new replies.