PDA

View Full Version : looking for some type of website or tool



s2kinteg916
12-09-2003, 01:16 PM
are there any tools where u can put in your address and it spiders it so you can see if there are any pr leaks ?

chromate
12-09-2003, 02:21 PM
I don't think so. A PR leak will only occur when you have an outgoing link. If you don't want to leak PR, just change your outgoing links to javascript or a form. Simple.

bugsy
12-10-2003, 03:45 PM
You can write a small php script to accomplish this (if you even want to automate it in the first place).

Mike
12-11-2003, 07:11 AM
By outgoing links you mean links to other sites? If so...

You'd write something like this? Obviously it could be made a lot more advanced...


$content = "all of your content code goes here";
if ($content = "<a href='http://'") {
echo "There are outgoing links.";
}


That would only work if you link to pages on your site like page.html instead of http://www.example.com/page.html though.

Anyway is that something along the lines of what you thought bugsy? I'm not completely sure it would work.