It turns out that since the URL we use sets a cookie and Hootsuite creates a frame, this IE will not trust a third-party cookie (our site). So I added the framebaster code to the page and called it right away if the browser is IE. Code below:
<meta http-equiv="refresh" content="15;url=<?php echo $url ?>" /> <script type="text/javascript"> var timeout = 1; if (navigator.userAgent.match(/MSIE/)) { timeout = 1; } else { timeout = 14500; } setTimeout('if (top != self) top.location.replace(self.location.href)', timeout); </script>
Perhaps this will someday help some other casual users.
Glen solsberry
source share