Full Page Iframe?

shane489

Junior Member
Joined
Oct 20, 2008
Messages
103
Reaction score
9
I want to iframe the whole offer landing page with the code seen in This Thread

If I have a domain i.e. mydomain.com and there I have a full page iframe that has a cpa or clickbank offer in it then can the networks see that the traffic is coming from mydomain.com? If so then would it help to blank the referrer if I put a dmr link into the iframe code that leads to the offer?

Are cpa networks totally against of using full page iframes? I'm not blocking any content of the offer except the ugly long url. Any help about using full page iframes would be appreciated!
 
You will need to blank or fake the referrer.

Check out referer.us.
 
So at the part where I have the place to enter the offer url, if I enter a referer.us link that leads to the offer then that's enough to fly under cover and noone finds out about the iframe?

<iframe id="tree" name="tree" src="http://xxx.bttb1.hop.clickbank.net" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto"></iframe>
 
yes, just make sure they are ok with blank referrers.

It is best to use a fake referrer.
 
Something along these lines...

Code:
<iframe src="http://www.google.com" width="100%" height="100%" frameborder="0" scrolling="auto" style="position: absolute;top: 0;left: 0"></iframe>
 
http://www.contentgeneration.org/?s=redirector can surely help you
 
Correct full page iframe should be;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="EN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Full Page IFrame</title>
<style type="text/css">
html {overflow: auto;}
html, body, div, iframe {margin: 0px; padding: 0px; height: 100%; border: none;}
iframe {display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden;}
</style>
</head>
<body>
<iframe id="tree" name="tree" src="CHILD PAGE URL GOES HERE" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto"></iframe>
</body>
</html>
 
Correct full page iframe should be;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="EN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Full Page IFrame</title>
<style type="text/css">
html {overflow: auto;}
html, body, div, iframe {margin: 0px; padding: 0px; height: 100%; border: none;}
iframe {display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden;}
</style>
</head>
<body>
<iframe id="tree" name="tree" src="CHILD PAGE URL GOES HERE" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%" scrolling="auto"></iframe>
</body>
</html>

I second this display the iframe just as it should be
 
Hiii,,,actually,we technically cannot disable the Back button on someone's browser.
 
apparently clickbank offers dont always track and give you credit if you use iframe (open to debate)

also some cpa networks allow full page iframe so no need to even hide referer (peefly for example i belive is 1 network who allow this)
 
Heres what I have:


<frameset rows="100%,*" border="0">
<frame src="www.yoursite.com" frameborder="0" />
<frame frameborder="0" noresize />
</frameset> document.removeEventListener('click, clickHandler, true);


On a side note, how can I hide iframes from g?
 
this should work in all major browsers

Code:
<html>
<head><title>iframe 100%</title>
<style type="text/css"> body,html{width:100%;height:100%;margin:0;overflow:hidden}</style>
</head>
<body>
<iframe width="100%" height="100%" frameborder="0" src="cant/post/links/yet.html"></iframe>
</body>
</html>

let me know if it fails

edit: changed from HTML to CODE for better reading
 
and how do you blank or fake refere here?
I didn't get it
 
and how do you blank or fake refere here?
I didn't get it

Same way you will fake it normally. Just here we will be calling the url from an iframe, so the iframe src url should be to your fake/blank script.

that way the url in the address bar and people see is that url you want them to see, and all the redirection and aff links redirects are happening in the iframe.
 
i am trying to do a full page iframe but is not working, im using wordpress heatmap theme, i create a new page and in the edit screen there is Visual / Text, i click on text tab and paste the code there... what i am doing wrong?
 
What is happening exactly? Is it showing iframe only on one part of the page?
You have to edit in theme html editor, not in visual/text editor, and remove unnecessary html code generated by wordpress template.
 
What is happening exactly? Is it showing iframe only on one part of the page?
You have to edit in theme html editor, not in visual/text editor, and remove unnecessary html code generated by wordpress template.

exactly, its not showing a full screen iframe....
the thing is how i edit the html of 1 single page on the editor?
 
i am trying to do a full page iframe but is not working, im using wordpress heatmap theme, i create a new page and in the edit screen there is Visual / Text, i click on text tab and paste the code there... what i am doing wrong?

You're likely fighting with the wordpress page template. Implement a custom page template that uses the iframe and set the post/page setting to use that custom page template. Or use a commercial cloaking script.
 
Back
Top