We have an ASP.NET website on IIS. We have a Lead Forensics
link. Which has been working fine prior to switching to require SSL on all pages. It is something similar to:
<script type="text/javascript" src="http://lead-123.com/js/8303.js"></script>
Since requiring SSL however, the tracking no longer seems to be working.
Obviously this is caused by the request to http
link from the original https
page. But the following two attempts are also failing:
src="//lead-123.com/js/8303.js"
src="https://lead-123.com/js/8303.js"
Visiting the https URL to the tracking script shows that it is being served (albeit with security errors).
I'm sure Lead Forensics have considered this. Does anyone know if there are any conventions or workarounds that can somehow be used so that security errors aren't reported on the site and for tracking to work? I can't find any documentation on this, and attempts to contact them haven't proven successful to date.
**
Update
I'm not sure the script is hosted on the https
link after all. (It only responds in my browser after I have successfully received a response from the http
link). Nevertheless, I am still looking for a convention on how to handle this situation, or whether a separate link is provided if using SSL, or indeed whether the technology is even capable of working over SSL.