Iframing an LP (Question)

Magic555

Regular Member
Joined
Apr 28, 2017
Messages
350
Reaction score
208
Hey so im trying to get my advertisers LP as a iframe but i get this error
"There is supposed to be some content here, but the publisher doesn’t allow it to be displayed in a frame. This is to help protect the security of any information you might enter into this site"
Is there a way to get around this? If i could some how show the LP on my site that would be great (without redirecting)

This is the code
HTML:
<head>
<style type="text/css">
    body {scrolling:no;
}
    iframe {position:absolute;
    z-index:1;
    top:0px;
    left:0px;
}
</style>
</head>
<body>
    <iframe src="https://website.com" height="100%" width="100%" frameborder="0"></iframe>
</body>
 
there's no way around it, landing page has cross origin protection on. Not iframeable. only way you can possibly get passed this is if you manage to find a major flaw in the browser which lets you break protection but yeah that's not likely to happen. Talk to the advertiser and see if you can iframe it and if they can turn off cross origin, but most of the time advertisers have it blocked for very specific reasons such as, stopping click jacking etc.
 
This iframe you want put on your landingpage is from affiliate network, or ?
 
there's no way around it, landing page has cross origin protection on. Not iframeable. only way you can possibly get passed this is if you manage to find a major flaw in the browser which lets you break protection but yeah that's not likely to happen. Talk to the advertiser and see if you can iframe it and if they can turn off cross origin, but most of the time advertisers have it blocked for very specific reasons such as, stopping click jacking etc.
Ah that sucks would have been great if that was possible. Thanks for the reply.
 
This iframe you want put on your landingpage is from affiliate network, or ?
Yes its from a network im guessing i have no choice but to redirect i guess.
 
Back
Top