Jump to content

Verify Links


Robin S
 Share

Recommended Posts

Verify Links

Periodically verifies that external links are working and not leading to an error page.

How it works

The module identifies links on a page when the page is saved and stores the URLs in a database table. For the purposes of this module a "link" is an external URL in any of the following...

  • FieldtypeURL fields, and fields whose Fieldtype extends it (e.g. ProFields Verified URL)
  • URL columns in a ProFields Table field
  • URL subfields in a ProFields Combo field
  • URL subfields in a ProFields Multiplier field

...and external href attributes from <a> tags in any of the following...

  • Textarea fields where the "Content Type" is "Markup/HTML" (e.g. CKEditor and TinyMCE fields)
  • CKEditor and TinyMCE columns in a ProFields Table field
  • CKEditor and TinyMCE subfields in a ProFields Combo field

The link URLs stored in the database table are then checked in batches via LazyCron and the response code for each URL is recorded.

Configuration

verify-links-3

On the module config screen you can define settings that determine the link verification rate. You can choose the frequency that the LazyCron task will execute and the number of links that are verified with each LazyCron execution. The description line in this section informs you approximately how often all links in the site will be verified based on the number of links currently detected and the settings you have chosen.

The module verifies links using curl_multi_exec which is pretty fast in most cases so if your site has a lot of links you can experiment with increasing the number of links to verify during each LazyCron execution.

You can also set the timeout for each link verification and customise the list of user agents if needed.

Usage

Visit Setup > Verify Links to view a paginated table showing the status of the links that have been identified in your site.

verify-links-1

The table rows are colour-coded according to the response code:

  • Potentially problematic response = red background
  • Redirect response = orange background
  • OK response = green background
  • Link has not yet been checked = white background

Where you see a 403 response code it's recommended to manually verify the link by clicking the URL to see if the page loads or not before treating it as a broken link. That's because some servers have anti-scraping firewalls that issue a 403 Forbidden response to requests from IP ranges that correspond to datacentres rather than to individual ISP customers and this will cause a "false positive" as a broken link.

For each link the "Page" column contains a link to edit the page and the "View" column contains a link to view the page on the front-end.

You can use the "Column visibility" dropdown to include a "Redirect" column in the table, which shows the redirect URL where this is available.

verify-links-2

For those who can't wait

The module identifies links as pages are saved and verifies links on a LazyCron schedule. If you've installed the module on an existing site and you don't want to wait for this process to happen organically you can use the ProcessWire API to save pages and verify links en masse.

// Save all non-admin, non-trashed pages in the site
// If your site has a very large number of pages you may need to split this into batches
$items = $pages->find("has_parent!=2|7, template!=admin, include=all");
foreach($items as $item) {
    $item->of(false);
    $item->save();
}
 
// Verify the given number of links from those that VerifyLinks has identified
// Execute this repeatedly until there are no more white rows in the Verify Links table
// You can try increasing $number_of_links if you like
$vl = $modules->get('VerifyLinks');
$number_of_links = 20;
$vl->verifyLinks($number_of_links);

 

Advanced

There are hookable methods but most users won't need to bother with these:

  • VerifyLinks::allowForField($field, $page) - Allow link URLs to be extracted from this field on this page?
  • VerifyLinks::isValidLink($url) - Is this a valid link URL to be saved by this module?
  • VerifyLinks::extractHtmlLinks($html) - Extract an array of external link URLs from the supplied HTML string

 

https://github.com/Toutouwai/VerifyLinks
https://processwire.com/modules/verify-links/

  • Like 16
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...