Code for Cloaking CPA offer URL

beyondrecruiters

Junior Member
Joined
Sep 19, 2008
Messages
145
Reaction score
11
I need some code that hides the cpa offer url in a users browser, and when they try to do a view source, it should encrypt the page as well as disable right clicking, and anything else that makes it difficult for the user who clicked your link to discover the real URL.

Is there any open source code available somewhere that does this?

I need to modify my current script to add such an option.
 
I'd prefer not to have to buy a new domain every time i have to cloak a url.
 
If it is for use in a WP Blog you can try Pretty Link Plugin.. It can do exactly what you need. They have a free and paid version..
If it isnt a blog what you can do is to install wordpress in a subdomain or a normal folder just to use pretty link to cloak your CPA Urls on your main domain. It can be easely set up.

You can download the free version here:

hxxp://wordpress.org/extend/plugins/pretty-link/
 
Thanks, but i am actually looking for some php code that does that, so i can incorporate it into my own private cloaking tool.

If anybody has such code that does exactly what I need, I'll pay for it.

Thanks.
 
Is no need to buy the new domains ...just use co.cc domain for free ...5 per account
 
i am looking for a script with the features i mentioned..it should be php/javascript and do the following:

cloak the cpa url with my own domain,
when they try to do a view source, it should encrypt the page as well as disable right clicking,
anything else to prevent a typical user from being able to identify the real cpa url is an added bonus.
 
Now aren't they still going to be able to find out your affiliate id through the cookie?
 
What you could try is this:

Have your links setup to call a javascript onclick.
Have an encoded timestamp as an argument for this JS function delivered with the page.

This javascript contains the encoded url - but it only returns this if it's called within, say 60 seconds of the original timestamp.

Then just POST to the url from the javascript. This way it's not in the code and it's not in the browser at the other end.
 
You can use this as well.

<head>
<meta http-equiv="Refresh" content="0;URL=http://www.yourdomain.com">
<title>Hi</title>
</head>
<body>
</body>
</html>
 
If it is for use in a WP Blog you can try Pretty Link Plugin.. It can do exactly what you need. They have a free and paid version..
If it isnt a blog what you can do is to install wordpress in a subdomain or a normal folder just to use pretty link to cloak your CPA Urls on your main domain. It can be easely set up.

You can download the free version here:

hxxp://wordpress.org/extend/plugins/pretty-link/

Cool information, I never thought of installing a wp blog in a folder then use pretty link to hide the aff link. Learning something new everyday... I prefer pretty link over meta refreshes because of the tracking! now thats a plus.
 
Back
Top