Any BHCB Alternatives?

Total Noob

Banned - By Request
Joined
May 10, 2009
Messages
2,446
Reaction score
2,732
I know of WP Guardian and BHCB. Are there any content lockers that are cheaper or free? I have a HTML site I want to test something on but would rather not drop $67 for BHCB yet.

I read a thread about someone making one for free using JS... anyone know what I'm talking about?

Thanks.
 
I know of WP Guardian and BHCB. Are there any content lockers that are cheaper or free? I have a HTML site I want to test something on but would rather not drop $67 for BHCB yet.

I read a thread about someone making one for free using JS... anyone know what I'm talking about?

Thanks.

I'll see what I can do tonight. It is very very easy, and have posted many times exact code pieces to build it, but no one wants to take it upon themselves to build one for the community.

I don't finish work for another 3 hours, but it is a friday and usually beers get broken out and we all work on our own projects so we shall see :)
 
I'll see what I can do tonight. It is very very easy, and have posted many times exact code pieces to build it, but no one wants to take it upon themselves to build one for the community.

I don't finish work for another 3 hours, but it is a friday and usually beers get broken out and we all work on our own projects so we shall see :)

That would be awesome... I'd definitely donate a few bucks (as I'm sure many others would) if you made one, just a simple form where there's space for text and 3-5 links with a simple background.
 
That would be awesome... I'd definitely donate a few bucks (as I'm sure many others would) if you made one, just a simple form where there's space for text and 3-5 links with a simple background.

It would just be a div, so you could put a background image etc.

Boss has just popped out so I'll fly through some of it now :)
 
I'd be very interested in this . Any chance you could build in Geo targeting and blank referer . I got it to work with BHCB but I just don't like the way it works. If you could do this for us, you would be my new God right now .
 
seo20 posted a free alternative a while back, haven't tried it but he knows his shizzle ;)
Code:
http://www.blackhatworld.com/blackhat-seo/black-hat-seo/189433-seo20s-ultimate-script-collection-free.html
 
Ok I did a quick version while my boss isn't looking. You guys will need to get off your ass and style this thing. But the "logic" is done for you. Just put a nice background picture, fiddle with the colors + styles.

First add this javascript to the head of your page :

Code:
<script src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js" type="text/javascript"></script>
<script type="text/javascript">

	var Delay = 10;//Seconds after them clicking the link, the gateway vanishes. 
	
	function setupgateway()
	{
		var Left = $(window).width() /2;
		Left = Left - $('#gatewaydiv').width()/2;
		
		var Top = $(window).height() /2;
		Top = Top - $('#gatewaydiv').height()/2;
		
		$('#gatewaydiv').css('top', Top+'px').css('left', Left+'px').css('display', 'inline');
	}
	
	function removegateway()
	{
		$('#gatewaydiv').css('display', 'none');
	}
	
	$(document).ready(function()
	{
		$('.offerlink').click(function()
		{
			setTimeout('removegateway()', Delay*1000);
		});
		
		setupgateway();
	});
</script>

Next you don't need all of this CSS, but just use it to get started off. Just add it to the head of your document aswell.

Code:
<style>
	#gatewaydiv
	{
		width:300px;
		height:300px;
		position:absolute;
		display:none;
		background-color:#CDCDCD;
	}
	
	.offerlink
	{
		color:red;
		font-weight:bold;
	}
	
	#OfferList
	{
		margin:0;
		padding:0;
	}
	
	#OfferList
	{
		list-style:none;
	}
	
</style>

Next just add this div anywhere in the body of your page. Probably best put just after the opening <body> tag.

Code:
<div id="gatewaydiv">
	<ul id="OfferList">
	Do an offer or DAI!
	<li><a href="http://www.wachahost.com" class="offerlink" target="blank">Cheap Web Hosting</a></li>
	<li><a href="http://www.google.com" class="offerlink" target="blank">GOOGLEZ</a></li>
	</ul>
</div>

Here is a link to a quick sandbox I made. Looks like utter crap. But you get the idea.

http://www.pyrogenicmedia.com/gateway/gatewaycode.html


Note if there was any content behind there. It would be covered, it overlays anything that would normally be behind it.

Click the link, and wait 10 seconds. The box will dissapear :)
 
Thanks pyronaut and seo20 (indirectly)... really appreciate it!
 
Can somebody provide suggestion for the best content lockers out there among these 2 or among others which gives me the option of adding the CPA offers for almost all the countries in the world and serving them depending upon the visitors IP.
Ok lets make this thing straight.
I need a similar content gateway protection script that serves visitors based on their IP the CPA offers specific to their own country instead of serving all the visitors irrespective of the visitors country the CPA offers of all countries.
Or is it possible to disable the CPA surveys for countries where I dont need to add it and only let it pop up for those countries where I select the offers to be displayed.Thanks
 
cpalockup

Hey, thanks for the plug! :)

Can somebody provide suggestion for the best content lockers out there among these 2 or among others which gives me the option of adding the CPA offers for almost all the countries in the world and serving them depending upon the visitors IP.
Ok lets make this thing straight.
I need a similar content gateway protection script that serves visitors based on their IP the CPA offers specific to their own country instead of serving all the visitors irrespective of the visitors country the CPA offers of all countries.
Or is it possible to disable the CPA surveys for countries where I dont need to add it and only let it pop up for those countries where I select the offers to be displayed.Thanks

I can customize the GeoTargeting module in CPA LockUp to cover any country you'd like, or alternatively only popup for specific countries. Right now CPA LockUp will work for US, Canada, UK and "Everything Else", displaying only the offers for the users country of origin.
 
Been looking for a script like this.. almost ready to plunk down a C note for a commercial script.. hopefully this will keep me from folly.

Thanks pyronaut
 
Back
Top