Link Checker Site with Top Site

Status
Not open for further replies.

immortalxx

Active Member
609
2009
6
0
Basically every referral you send to us, is a vote towards our top 10 stats, which is shown on every page. Which in turn can generate a lot of traffic for you!

Cheating of course gets you banned.

Using any of our services is ALLOWED for vote consideration! Since its still being written some bugs may arise, if you catch any please email me or contact me.

If you have any ideas also contact me.

URL: http://immortalxx.com/Link-Checker/

We also support many of the top file hosting sites, if we missed any let me know. We have about 50+ supported.


EDIT:

Yes, you send traffic to us, and it gets sorted and added. As long as you have a direct link to the site your votes count.

Basically when someone clicks any link to immortalxx.com from your site, immortalxx.com gets the users referrer then gives that site sending that user 1 point.

There is no signing up.
 
36 comments
Yes, you send traffic to us, and it gets sorted and added. As long as you have a direct link to the site your votes count.

Basically when someone clicks any link to immortalxx.com from your site, immortalxx.com gets the users referrer then gives that site sending that user 1 point.

There is no signing up.
 
Yes, you send traffic to us, and it gets sorted and added. As long as you have a direct link to the site your votes count.

Basically when someone clicks any link to immortalxx.com from your site, immortalxx.com gets the users referrer then gives that site sending that user 1 point.

There is no signing up.

lol do u know how easy this can be manipulated ..
 
Okay, So i have been using teh WGTools one from back when it was TubeNow,
I just decided to test this, I tested both with teh same post/link and I got these results ...

WGTools
http://i44.tinypic.com/r86ypz.png

Immortalxx
http://i43.tinypic.com/6srkzq.png

Ok, So teh Immortalxx Link Checker took a little while longer than teh WGTools one but at least it returned teh correct result,
I have decided to switch on InsaneCoderz and see how this goes.
 
thank you for switching. if you see any bugs or anything you want me to update please let me know i will be more then happy to make updates
 
Best of luck immortalxx. I ran one of these for a few months and was checking over a million links a day. Be prepared with a high spec dedicated server for this as you'll need it if it get's popular. Your also going to get an awful lot of people asking for help to install the link checker 90% of which will be noobs.

If you want my advice their's a far better way to transfer the links to your site.

The way your doing it is curl'ing the page and then probably using regex to find the links on the returned script before checking them. This causes a lot of problems for slow sites. If your trying to curl a really slow site, like some noob on free hosting of which their are lots, then your curl function will probably time out. It will also put a lot of stress on your server.

A far faster way is to transfer the links through the url. Your currently transferring the site's download page and getting it with a $_GET function probably. If you do somthing like:
PHP:
http://immortalxx.com/Link-Checker/?url=http://rapidshare.com/files/123456/movie.part1.rarhttp://rapidshare.com/files/9876543/movie.part2.rarhttp://rapidshare.com/files/9876543/movie.part3.rarhttp://rapidshare.com/files/9876543/movie.part4.rar

This way you'll get the links instantly and be able to start checking them straight away. The advantages of this are massive. Your not having to curl their site so the speed of the site your checking is insignificant. It will greatly reduce your server load which you'll need as link checkers are a bitch and it will work on any noobs site. The best thing about it is it will work in any area. You'll be able to use it in VIP, Staff area's etc as your not having to crawl the site. Loads of people have problems with adding the VB spider mod and others don't want their site opened up to Google for security reasons.

I know their's a limit on the amount of characters you can transfer over a url but it's a few hundred which will get you up to about 50 odd links which is enough to check anyway.

It's pretty easy to do as well your probably getting people to put the link around the code box where their is a variable like {code} or something which is exactly what you want to transfer so it will be something like:
PHP:
http://immortalxx.com/Link-Checker/?url=urlencode{code}

Another great advantage of this is when you check the links it will only check the links in the code box you selected. If every person replied with new links then these won't be checked. Your also not going to have the problem of any SEO mods. SEO mods add some of the text to the meta description and after curling the page these are checked. Some of them are cut off and then end up reporting as dead. You'll notice this on TubeNow's link checker. Also IPB add's some funny characters to the links in the meta description which will give you errors on your returned links. Especially 2.3.x

I really think you should try and implement this in a Version 2. Concentrate on that and then go for some fancy shit like stats and recording the dead links like what I had if you want.

Need any more help of advice just ask.
 
yes i will add this feature, it is a really great idea. I can give people the option of how they want the links checked. That way the old system still works. Thank you for giving me this idea.
 
Great ideia !
yes i will add this feature, it is a really great idea. I can give people the option of how they want the links checked. That way the old system still works. Thank you for giving me this idea.

Thanks.

About the update.
If you want just use a different id for the $_GET function for the update. Right now your using url=XXXXX but for the update you could use links=XXXXX which will mean all the links on everyone's site still go to the page which is what you want from a Google point of view. You can easily have a if ($_GET == url) then do the old way and else if ($_GET == links) do the new way.
 
Status
Not open for further replies.
Back
Top