Support for HTTPS connections
-
Hello,
My site runs only on https:// and this plugin embeds https:// content which is blocked by most modern browsers when the site itself runs on https://
I found a quick and easy way to resolve the issue:
In bitsontherun.php on line 481,
$url = "https://$content_mask/$path";
Change the line to this:
$url = "//$content_mask/$path";
In order to allow the browser to decide which protocol should be used.
Using plugin version 1.3.1
- The topic ‘Support for HTTPS connections’ is closed to new replies.