So yeah, nofollow doesn’t work like it used to. Your only options if you care about PR leaks are to either remove the links or to just ignore it. I’ll show you how you can unlink all external links on your WP blog using a regex and John Godley’s Search Unleashed plugin.

First, you want to prevent new urls from being posted. You’ll need to do a couple of theme edits.
Remove Comment Links in WordPress:

Edit Theme > comments.php ; Remove the url form:

            <div class="form-label"><label for="url">< ?php _e('Website', 'sandbox') ?></label></div>
            <div class="form-input"><input id="url" name="url" type="text" value="<?php echo $comment_author_url ?/>" maxlength="50" tabindex="5" /></div>

Use search regex plugin to remove the link:

http://wordpress.org/extend/plugins/search-regex/

To remove all commentluv links from comments:

(.*last blog post.*)

Remove all http links:

(http.*)

Remove only the link:

(<a href.*">)
(</a>)

Unlink “a class” links:

(<a class.*">(.*?)</a>)

replace with $1

Unlink “a href” links with their url target as quoted plaintext (without killing image links):

(<a \s+(?:(?:\w+\s*=\s*)(?:\w+|"[^"]*"|'[^']*'))*?\s*href\s*=\s*(?<url>\w+|"[^"]*"|'[^']*')(?:(?:\s+\w+\s*=\s*)(?:\w+|"[^"]*"|'[^']*'))*?>[^< ]+</a>)
</a>

replace with $1

Unlink everything including images:

(<a [\s]+[^>]*?href[\s]?=[\s\"']*(.*?)[\"']*.*?>([^< ]+|.*?)?<\/a>)
</a>

replace with $2

Disclaimer: This is an independent and personal review. You won’t find any biased “opinions” or commission links here.

Recently, I saw increased activity on my old firewall logs. Some strange port probes, outbound ICMP traffic, and other miscellaneous oddities. I got paranoid and started looking for a better firewall. After reading the reviews and leak test results, I landed on COMODO Firewall Pro, the free Windows firewall software. I was impressed by the extensive feature list and its test performance, so I decided to install it right away.

I have used many firewall softwares in the past, and the main issue with all of them is maintaining a balance of configurability, ease of use, and security. I had been using a relatively unknown, yet highly configurable, software firewall for some time, though its effectiveness and ease of use were becoming questionable and those were things that motivated my new selection as well. In my opinion, COMODO’s product is the best balance of user friendliness and “just works” you will find in any software firewall today, free or otherwise.

If you are in the market for a new firewall, I really recommend you at least try COMODO. I know this is gonna make me sound old, but these days I really appreciate a product that will just do its job so I can spend more time doing mine and not fighting with it every few seconds. COMODO is top notch at this, and is highly effective as well. Take a look at the feature list, and leak test reports for yourself. They speak volumes, but your own experience will say it all.

Download

Matousec.com leak test report (PDF)

© 2010 nukeitdotorg Suffusion WordPress theme by Sayontan Sinha