vote up 2 vote down star
2

What techniques or tools are recommended for finding broken links on a website?

I have access to the logfiles, so could conceivably parse these looking for 404 errors, but would like something automated which will follow (or attempt to follow) all links on a site.

flag

7 Answers

vote up 5 vote down check

See LinkChecker for Firefox.

For Mac OS there is a tool Integrity which can check URLs for broken links.

For Windows there is Xenu's Link Sleuth.

link|flag
Xenu's Link Sleuth looks just the ticket. – Ian Nelson Sep 15 '08 at 18:45
vote up 2 vote down

Either use a tool that parses your log files and gives you a 'broken links' report (e.g. Analog or Google Webmaster Tools), or run a tool that spiders your web site and reports broken links (e.g. W3C Link Checker).

link|flag
vote up 1 vote down

I like the W3C Link Checker.

link|flag
vote up 0 vote down

Hi Ian,

Best way is to create a small bot that runs over your entire site, and records the outcome. I did this to test my sites before deployment and it works really well.

link|flag
vote up 0 vote down

See linkcheker tool

link|flag
vote up 0 vote down

Your best bet is to knock together your own spider in your scripting language of choice, it could be done recursively along the lines of:

// Pseudo-code to recursively check for broken links
// logging all errors centrally
function check_links($page)
{
    $html = fetch_page($page);
    if(!$html)
    {
        // Log page to failures log
        ...
    }
    else
    {
        // Find all html, img, etc links on page
        $links = find_links_on_page($html);
        foreach($links as $link)
        {
            check_links($link);
        }
    }
}

Once your site has gotten a certain level of attention from Google, their webmaster tools are invaluable in showing broken links that users may come across, but this is quite reactionary - the dead links may be around for several weeks before google indexes them and logs the 404 in your webmaster panel.

Writing your own script like above will show you all possible broken links, without having to wait for google (webmaster tool) or your users (404 in access logs) to stumble across them.

link|flag
I no longer have time for such intellectual challenges (fun though it sounds), and was kinda hoping someone might have written a such a spider already! :-) – Ian Nelson Sep 15 '08 at 18:55
If someone ever writes a handy pseudo-code -> PHP/Perl converter, then we'd be in business! – ConroyP Sep 15 '08 at 19:05
vote up 0 vote down

There's a windows app called CheckWeb. Its no longer developed, but it works well, and the code is open (C++ I believe).

You just give it a url, and it will crawl your site (and external links if you choose), reporting any errors, image / page "weight" etc.

http://www.algonet.se/~hubbabub/how-to/checkweben.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.