Ok, I'm gunna spend some time now to do this as I sense people are getting a little frustrated.
I'm sorry you've all had to wait, but my business has to com first over giving out free stuff and methods, I'm sure everyone can appreciate that.
So ok, when you import the products to the first domain, you need to save the Amazon URL WITH YOUR AFFILIATE INFO IN IT for that product somewhere on the first site. If its missing your affiliate info, you wont bank, simple as that. I'm sure you can figure that part out.
On to the redirects
So on site 1, when a visitor clicks your buy button or whatever, that button links to site 2 like this
http://www.site2.com/doredirect.php?url=AMAZON_URL
doredirect.php should be something like this
<?php
if (!isset($_REQUEST['url'])) $_REQUEST['url'] = "www.amazon.com?your_affiliate_id_stuff;
?>
<script>
function do_redirect()
{
window.location = "<?=urldecode($_REQUEST['url']);?>";
}
setTimeout("do_redirect()", 500);
</script>
?>
And thats it!
I haven't tested it, as I just laid it down in here, but its very simple, and anyone thats every sniffed PHP can figure this out in a heartbeat.
D
I'm sorry you've all had to wait, but my business has to com first over giving out free stuff and methods, I'm sure everyone can appreciate that.
So ok, when you import the products to the first domain, you need to save the Amazon URL WITH YOUR AFFILIATE INFO IN IT for that product somewhere on the first site. If its missing your affiliate info, you wont bank, simple as that. I'm sure you can figure that part out.
On to the redirects
So on site 1, when a visitor clicks your buy button or whatever, that button links to site 2 like this
http://www.site2.com/doredirect.php?url=AMAZON_URL
doredirect.php should be something like this
<?php
if (!isset($_REQUEST['url'])) $_REQUEST['url'] = "www.amazon.com?your_affiliate_id_stuff;
?>
<script>
function do_redirect()
{
window.location = "<?=urldecode($_REQUEST['url']);?>";
}
setTimeout("do_redirect()", 500);
</script>
?>
And thats it!
I haven't tested it, as I just laid it down in here, but its very simple, and anyone thats every sniffed PHP can figure this out in a heartbeat.
D
Last edited: