
Originally Posted by
ComicsXP
Well, I fixed the problem.
It wasn't the swf as you had suggested, but that did make me think to check on some of the other uncalled scripts.
I added lightbox to the pages, for previewing comic pages. It turns out, this was the culprit all along.
Thank you everyone for taking the time to try and help me. In the hopes that this will save someone else some headaches, here was the fix I applied.
Since I wanted to keep Lightbox, but there is no need for it to show up on the secure pages (checkout, my account). I changed the script for lightbox to this:
if (getenv('HTTPS') == 'on') {
// do nothing
} else {
// echo the script for lightbox here
}
Basically, this turned off Lightbox, if the page is in https mode. So, no more call, no more problem.
Thank you again, everyone.