Free CPA Gateway (Content Locker) Code

It shows under megavideo flash object :)
Anyway to fix this ?
Thanks
 
Looks nice indeed. However when Noscript a firefox plugin is installed you wont see the Gateway which could cost you some conversions. Nevertheless looks nice indeed. I will hold off on the bhcb for a while to see how far this can progress.

Now if we could incorporate some blank referring this would be an amazing free alternative.


Ppl with firefox and noscript are smart users and they wont waste there time on ur crappy content
 
Again, a great post from you, thnx given and rep too!!!
Now, I have the content locker but I need an answer to these questions from someone who is good at coding(pyronaut for e.x:)), because I don't know shit about programming...

1. How can we implement Geo-Targeting And Ad-Rotation(or a Drop-Down Menu with ads)?
2. How can we implement Referer Blanking/Spoofing that NEVER leaks the referer?
you can use this service

http://www.maxmind.com/app/javascript_city

:)
 
The reason for youtube and megavideos videos on top, is because of the z-index attribute. In order to have your div on top, add this to the style. "z-index:9".
Ex. <div style="z-index:9">
 
As for blanking the reffer.. Someone else may know something I dont't. But as far as I know, there is no way to 'blank' the refferer, as this is carried by the users web browser, but what I would do, is use redirects. Now you can't use a header redirect, because PHP by default at least, carries along the reffering information.

Instead of sending the user straight to the offer, create this page on a site that the offer would find normal:
HTML:
<html>
<head>
<script type="text/javascript">
	<!--
		if (top.location!= self.location) {
			top.location = self.location.href
		}else{
      document.location='youroffer'
		}
	//-->
</script>
<meta http-equiv="refresh" content="0;url=youroffer" />
</head>
<body>
If not automatically redirected, please <a href='youroffer'>Continue</a>
</body>
</html>
This will make it seem as though they are coming from site B, when infact they are coming from site A
 
The reason for youtube and megavideos videos on top, is because of the z-index attribute. In order to have your div on top, add this to the style. "z-index:9".
Ex. <div style="z-index:9">

You also need WMode to transparent on the video behind. Flash videos don't always adhere to ZIndex.
 
It shows under megavideo flash object :)
Anyway to fix this ?
Thanks

Flash objects always want to be the center of attention.

To get things to appear in front of them, add this to the code for the video

in the object tag add: <param name="wmode" value="transparent">
and in the embed tag add: wmode="transparent"
 
1. How can we implement Geo-Targeting And Ad-Rotation(or a Drop-Down Menu with ads)?
2. How can we implement Referer Blanking/Spoofing that NEVER leaks the referer?
 
1. How can we implement Geo-Targeting And Ad-Rotation(or a Drop-Down Menu with ads)?
2. How can we implement Referer Blanking/Spoofing that NEVER leaks the referer?

Just for being a jackass, and copy and pasting the exact wording (And color), of another post in this thread. And for not reading the several answers that followed it. I won't answer your question.
 
It would be very useful if you could also show us the code that would block scroll down and right click. I would really apreciate it. Anyway I apreciate your effort to share this script with us.
 
is this the same as massblogpress unblockable pop over...
 
Very nice script - very similar to BHCB in certain ways.

Beware:
We know that the CPA postback is not always reliable, as CPA may scrub the leads, causing the lock-up on the gateway screen if CPA postback has not happened after the user submitted/signed up the sites, only if the timer is disabled.
 
great script i can think of a great way to use this now, BUT how do i change the transperancy of the background do i can see the site thats behind instead of just leaving it black, lets say i wanted to make a fade or change the opacity...
 
anyone know how to do this:
great script i can think of a great way to use this now, BUT how do i change the transperancy of the background do i can see the site thats behind instead of just leaving it black, lets say i wanted to make a fade or change the opacity...
 
Take a look in this piece of code and play with "opacity" value
until it will have the desired opacity.

Code:
#gatewayDimmer
	{
		background-color:#000000;
		opacity:0.8;
		display:none;
		position:absolute;
		top:0;
}
 
Is there anyway to delay the gateway from popping up after x amount of seconds or have it popup once a user clicks anywhere on the page?
 
Back
Top