Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi currently there seems to be a conflict with WooCommerce plugin. Others have reported similar or same issue as you. The plugin developer is investigating this further.

    Thank you

    Hello,

    I have the same issue and tried to fix it, but with no luck for now.
    What’s the error :

    “Mixed Content: The page at ‘https://…/mon-compte/’ was loaded over HTTPS, but requested an insecure image ‘https://…/wp-content/plugins/si-captcha-for-wordpress/captcha/images/refresh.png’. This content should also be served over HTTPS.”

    So this happens because it tries to load a url with http instead of https.

    The url is generated in si-captcha.php, in function get_captcha_url_si.

    I tried to force this line :

    $url = preg_replace('|https://|', 'https://', $url);

    But with no luck.

    Anyway, I think this happens here at least. Any core developer here ?

    I found out what was my issue with Woocommerce+Si Captcha.

    It was not only related to Woocommerce, it was due to the fact that I have different urls in wordpress options.

    The “wordpress url” is :

    https://mydomain.fr/wordpressdir

    The “site url” :

    https://www.mydomain.fr

    => Actually, the “www” would mess up the plugin in the end.

    I just did a dirty hack :

    In si-captcha-for-wordpress/si-captcha.php, in function get_captcha_url_si(), just before it returns the url, I wrote :

    $url = preg_replace('|https://www.mydomain.fr|', 'https://mydomain.fr/wordpressdir', $url);

    where mydomain and wordpressdir are my personal paths.

    I hope the developer can fix the issue properly.

    Hi @arbeca thank you for your finding and solution. The plugin developer will investigate further your solution.

    Kind regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘i have problems with SI CAPTCHA on My Account page(WOOCOMMERCE)’ is closed to new replies.