Tumblr Redirection Script

CazuaL

Elite Member
Joined
Nov 27, 2011
Messages
1,741
Reaction score
1,099
I don't code myself, never have done and wouldn't even know where to begin but I was thinking the other day about ways to make cash with tumblr.
Start thinking about a redirection script, something that would redirect after X amount of visitors. Is that something that can be done?

So every 5th, 10th, 50th what ever you want is sent to another site. Id imagine it's fairly straight forward.
Any help would be appreciated.

Ben
 
Yes it's easy doable, using javascript.
Quick way:

<script>
var numb = Math.floor((Math.random() * 2) + 1); //chances, 2 means 50% , 4 = 25% and so on..
if (numb == 2) {
top.location.href = 'http://www.google.com'; //change link to your website
}
</script>
So anyone visit your blog, chances are 50% he will be redirected to google(or any website you type above).
 
Last edited:
Yes it's easy doable, using javascript.
Quick way:


So anyone visit your blog, chances are 50% he will be redirected to google(or any website you type above).

Thank you very much mate.

So to make it 25% Id change "var numb = Math.floor((Math.random() * 4) + 1)"
Would I also change "if (numb == 4) {"
 
Just change this part >>> var numb = Math.floor((Math.random() * 4) + 1)

Send me link of any your tumblr post, I am adding feature to mass reblog on my bot , so let's see how it's working.
 
This is an interesting concept and I would be interested to see if it works for a decent amount of time without getting the account terminated in a hurry.

Also how would this be implemented? Would that code go right into the html of the tumblr blog?
 
This is an interesting concept and I would be interested to see if it works for a decent amount of time without getting the account terminated in a hurry.

Also how would this be implemented? Would that code go right into the html of the tumblr blog?
Just paste code before </head> in html theme..
 
You still have to get people to your blog for this to work. Tumblr posts carry just content/images, it won't include your javascript or redirection code. So if someone reblogs/hearts your post, it'll appear on their blog but won't carry your theme/javascript.
 
You still have to get people to your blog for this to work. Tumblr posts carry just content/images, it won't include your javascript or redirection code. So if someone reblogs/hearts your post, it'll appear on their blog but won't carry your theme/javascript.

I guess I'm not sure how many people I have actually landing on my blog page, as opposed to just liking/reblogging. Maybe I'll have to add some analytics to all my blogs and see where people are actually hitting the blog page.
 
You still have to get people to your blog for this to work. Tumblr posts carry just content/images, it won't include your javascript or redirection code. So if someone reblogs/hearts your post, it'll appear on their blog but won't carry your theme/javascript.

Why would you include it in your posts.. that is just stupid.
 
Cazual, if you are into Tumblr I'm looking for somebody to JV with. I have some traffic now, over 150k followers and I'm a good coder, if interested PM me.
 
Last edited:
μελαγχολία;7350269 said:
Cazual, if you are into Tumblr I'm looking for somebody to JV with. I have some traffic now, over 150k followers and I'm a good coder, if interested PM me.

150k Followers, very nice. What niche are you in?
 
Any success or any banns with this script? I also got around 150K followers and looking for better ways of monetization.
 
Any success or any banns with this script? I also got around 150K followers and looking for better ways of monetization.

The blogs I tested this script on were banned a few days later, could be due to the ratio I set (1 in 4 visitors redirected to a dating offer) OR Tumblr doesn't just doesn't like redirection scripts.
I advise against using this if you value your blog
 
Hey guys i want to ask you now days i start seeing people using (maybe new method idk) with plugrush codes with some free java scripts site and they put plugrush codes and juicy codes in script (js file) or something like that idk can any1 tell in pm or maybe here how to do that? Or contact me via skype...
 
The blogs I tested this script on were banned a few days later, could be due to the ratio I set (1 in 4 visitors redirected to a dating offer) OR Tumblr doesn't just doesn't like redirection scripts.
I advise against using this if you value your blog

Not because of your ratio, lol. Because of your javascript code. They don't like to redirect users :D
 
It seems interesting for a churn and burn tumblr, but for long term it seems that it probably would be better to watermark images every so often.
 
Back
Top