[METHOD Step-by-Step with CODE] My Twisted Method to $1k+ a week - NOOB friendly

On the off chance that someone is interested in this, this code is very similar to the OPs original code, but with a little twist.

There is a button 1.jpg , when you press that, it changes to 2.jpg , and after 3 seconds changes to 3.jpg and the link swap happens at this time too.

The use I see for this is you start off with a "Download File" , when clicked changes to "Anti-Spam verification initialized..." and then finally to "Download Ready" with the link changed.

I know the content locker will for the most part obscure the "Anti-Spam verification initialized" image, but in my case, I am combining this method with another in such a way that this somewhat improves the look of my particular set up.

So it may be useful for someone else also :)

Code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript">
function changeIt(imageName,objName)
{
var obj = document.getElementById(objName);

var imgTag = "<img src='"+imageName+"' border='0' />";

obj.innerHTML = imgTag;

return;
}
</script>
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Your Page Title</title>

<!--
Call jQuery because our locker needs it
 -->

<script type="text/javascript"
    src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js">
</script>

</head>

<body>

<script type="text/javascript" language="javascript">
function yourFunction(){
    document.getElementById('yourfirDiv').style.display='block';
    document.getElementById('yoursecDiv').style.display='none';
}
</script>



<div id="yoursecDiv" style="display:block;"><a href="javascript:void(0)" onclick="var fileref=document.createElement('script');fileref.setAttribute('type','text/javascript'); fileref.setAttribute('src', 'http://yourlockerurl.js?guid=123456789');document.body.appendChild(fileref); setTimeout(yourFunction, 3000);changeIt('http://www.site.com/images/2.jpg','yoursecDiv');">
<img src="http://www.site.com/images/1.jpg" border="0" alt="one" /></a></div>

<!--
Place the Real Link within yourfirDiv which is set to not display until yourFunction has been executed.
 -->

<div id="yourfirDiv" style="display:none;"><a href="http://www.google.com"><img src="http://www.site.com/images/3.jpg" border="0" alt="one" /></a></div>
</div>

<br><br>


</body>
</html>

FYI my set up involves this , and long story short, my locker pops not onclick, but just after X seconds . The above image changing thingy makes it more credible, and gives all the cparedirect shit time to load, because if it don't load before the X seconds then the locker disappears for unknown reason. My knowledge is pretty limited on all this stuff, so just making the best mash up of this method and this that I can given what I have :)
 
Last edited:
On the off chance that someone is interested in this, this code is very similar to the OPs original code, but with a little twist.

There is a button 1.jpg , when you press that, it changes to 2.jpg , and after 3 seconds changes to 3.jpg and the link swap happens at this time too.

The use I see for this is you start off with a "Download File" , when clicked changes to "Anti-Spam verification initialized..." and then finally to "Download Ready" with the link changed.

I know the content locker will for the most part obscure the "Anti-Spam verification initialized" image, but in my case, I am combining this method with another in such a way that this somewhat improves the look of my particular set up.

So it may be useful for someone else also :)

Code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript">
function changeIt(imageName,objName)
{
var obj = document.getElementById(objName);

var imgTag = "<img src='"+imageName+"' border='0' />";

obj.innerHTML = imgTag;

return;
}
</script>
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Your Page Title</title>

<!--
Call jQuery because our locker needs it
 -->

<script type="text/javascript"
    src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js">
</script>

</head>

<body>

<script type="text/javascript" language="javascript">
function yourFunction(){
    document.getElementById('yourfirDiv').style.display='block';
    document.getElementById('yoursecDiv').style.display='none';
}
</script>



<div id="yoursecDiv" style="display:block;"><a href="javascript:void(0)" onclick="var fileref=document.createElement('script');fileref.setAttribute('type','text/javascript'); fileref.setAttribute('src', 'http://yourlockerurl.js?guid=123456789');document.body.appendChild(fileref); setTimeout(yourFunction, 3000);changeIt('http://www.site.com/images/2.jpg','yoursecDiv');">
<img src="http://www.site.com/images/1.jpg" border="0" alt="one" /></a></div>

<!--
Place the Real Link within yourfirDiv which is set to not display until yourFunction has been executed.
 -->

<div id="yourfirDiv" style="display:none;"><a href="http://www.google.com"><img src="http://www.site.com/images/3.jpg" border="0" alt="one" /></a></div>
</div>

<br><br>


</body>
</html>
FYI my set up involves this , and long story short, my locker pops not onclick, but just after X seconds . The above image changing thingy makes it more credible, and gives all the cparedirect shit time to load, because if it don't load before the X seconds then the locker disappears for unknown reason. My knowledge is pretty limited on all this stuff, so just making the best mash up of this method and this that I can given what I have :)

Mate,

That's some nice thinking and some nice tweaking going on right there :)

You have seen, as was my original intention, the beauty of the link swapping code. It is not only something which can call a locker, it can call anything. It not only swaps links, it can swap images, or, again, anything.

The thread you are linking to is CrazyFlx's twist to Pyronaut's locker.
Both these guys are downright awesome, and you'd all do well to read everything they've ever posted :)
Both versions are up to the task for banking with this method, the only issue with them is they require a little more set up, and need you to be a little more comfortable with working with code.
Setting up a locker on one site should be a no-brainer, almost, but setting this up for multiple sites can become a bit of a headache.

Nevertheless, it's brilliant code, and does very well as a starting point for people looking to monetize with locking with no initial outlay.
Once the cash comes in, it's time to look at more "out-of-the-box" or "refined" solutions, as they'll make your "scaling" efforts a doddle ;)
 
Mate,

That's some nice thinking and some nice tweaking going on right there :)

You have seen, as was my original intention, the beauty of the link swapping code. It is not only something which can call a locker, it can call anything. It not only swaps links, it can swap images, or, again, anything.

The thread you are linking to is CrazyFlx's twist to Pyronaut's locker.
Both these guys are downright awesome, and you'd all do well to read everything they've ever posted :)
Both versions are up to the task for banking with this method, the only issue with them is they require a little more set up, and need you to be a little more comfortable with working with code.
Setting up a locker on one site should be a no-brainer, almost, but setting this up for multiple sites can become a bit of a headache.

Nevertheless, it's brilliant code, and does very well as a starting point for people looking to monetize with locking with no initial outlay.
Once the cash comes in, it's time to look at more "out-of-the-box" or "refined" solutions, as they'll make your "scaling" efforts a doddle ;)

Yeah, both your and their threads are awesome, so I'm guessing if I combine them, it should make heads explode..! Well that's the plan. My site is nearly ready for testing, if that works out as planned, then I will need to expand and 'slice' more email submits (sigh...), and set up more relevant blogs for cparedirector to help cover my tracks.

Will post back here to let you know how I get on!
 
Guys share some results :) I read the post through and didn't see any feedback yet how much you actually made using this method. I think many of the post followers would be interested in this kind of information :)
 
i am still trying to find the forums to post links in... 2 weeks after i read the thread! i find it easier to just commit suicide! what would be the keywords to use to find the forums? i registered in a few only to find them inappropriate for my link.

actually i think the biggest hurdle for me is the burning desire to make money. how do you acquire the desire? i so desperately need money. yet i still cannot find the burning desire...?
 
Last edited:
i am still trying to find the forums to post links in... 2 weeks after i read the thread! i find it easier to just commit suicide! what would be the keywords to use to find the forums? i registered in a few only to find them inappropriate for my link.

actually i think the biggest hurdle for me is the burning desire to make money. how do you acquire the desire? i so desperately need money. yet i still cannot find the burning desire...?

For this to work you need traffic. Just boil it all down to that.
If forum posting isn't happening for you, but you're able to drive traffic from social networks, or from YT, or from any of the countless other methods offered and discussed on this forum, they'll work just as well :)

desperately need the money - don't have the burning desire for money, wow, there's an anachronism if ever I saw one!!!
 
Truly great stuff. Going to try this now. I this safe to use with networks like Neverblue and Peerfly? Thankyou very much for sharing this,
 
very nice method mate this whole idea is very smart.
thanks and rep given
So i printed the method and now can be moved in VIP ;)
 
Yeah, lol I'm almost the opposite to everyone here, I can get traffic but can't code to save my life.

Will be happy to work a JV with someone with a half decent rep on bhw.
 
Yeah, lol I'm almost the opposite to everyone here, I can get traffic but can't code to save my life.

Will be happy to work a JV with someone with a half decent rep on bhw.

Sent you a PM.

What CPA networks do you recommend for this?

There are two ways to run this:

1. Whitehat

Use only legit downloads (no cracks, no copyrighted content, etc), and use offers only from Incentive/Gateway Networks which allow locking, or from mainstream networks, where you only use incentivizable, or lockable offers.

2. Blackhat

Use any downloads you like, use any networks you like (mainstream tend to pay better than Incent/Gateway networks), use any offers you like (non-incent tend to pay more than incent)

For BH, you need to cover your tracks, make sure you research how to do this so it's bullet-proof, you're not only going to need to avoid Network bans, but also the wrath of hosting companies, domain registrars, and the authorities.


For either WH or BH, stick to Networks which you know pay well, on time, don't consistently shave and/or scrub, and where you have decent relationships with your AMs.
If you don't already have that kind of list, it's time to start researching, joining, and building those relationships :)
 
At JohnsonDaniel,

This little N00b is very gratefull for your post! I have copied all the good info from this topic into a document, I'm going to make one readable plan out of it just so I can wrap my head around it! (Don't worry, I'm not making an e-book! :D)

Let's see if I can get this one to work for me, great share and great overall topic man! To bad i don;t have time for this the next couple of days but i WILL give it a try soon!

Best regards,
Mike:baby09:
 
ebook is done, and ready for download.. if you want a link, just PM me.... I will send you to my fake mediafire site :P
 
Last edited:
ebook is done, and ready for download.. if you want a link, just PM me.... I will send you to my fake mediafire site :P

PM me the link - my guess is that this thread has helped spawn hundreds of fake download pages, if not thousands, and some of them must be mind-blowing, happy to take a look for you, but I only complete the offers that promise me a free, guaranteed, $200,000 (yep, 200 thousand dollars) deposit into my bank account once I've completed all 150 pages in their path - have you got one of those????? :D
 
Daniel, thanks 4 the share. Great work.

As I have quite some programming experience and solid understanding of technical aspect of the method, I have no problem implementing it. Though I have other problems :)
First - to be able promoting an offer (to unlock it) (email / zip submit), I have to provide my promoting page and promoting plan :). I don't think any network will like this plan (your method). Any comments on this issue?

Keep up the good work!
 
Last edited:
Daniel, thanks 4 the share. Great work.

You're welcome :)

As I have quite some programming experience and solid understanding of technical aspect of the method, I have no problem implementing it. Though I have other problems :)

You're over the worst of it, though...

First - to be able promoting an offer (to unlock it) (email / zip submit), I have to provide my promoting page and promoting plan :).

"HAVE to..."??? Who said that? What you provide to advertisers regarding information on how you drive your traffic is up to you, it's your data, and, imho, you should protect it, and not hand it to anyone.

I don't think any network will like this plan (your method). Any comments on this issue?

Who said they have to like it? Use a locker that will blank or fake your referers and they won't have to know ;)

Keep up the good work!

I'll try :P
 
Back
Top