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.

Requires the following core modules to be installed:

  • PagePaths
  • LazyCron

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


vl-2

On the main 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.

vl-3

In the Process module config there's a field allowing you to exclude URLs that start with a given string. This only applies to the "Error responses only" listing, and can be useful to avoid seeing false-positive error statuses for domains that you know provide inaccurate responses (more about this below).

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

You can use the "Custom Search Builder" to filter the table by particular column values, e.g. for a particular response code.

To see only links that have an error response code (400 or higher, or 0), use the flyout menu to visit Setup > Verify Links > Error responses only.

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

  • 5 months later...

Hello,

I have an issue installing the module, as therequired module "PagePaths" doesn't exist 😕

When installing, it says it needs the module "PagePaths":

spacer.png

 

 

But apparently, there is no module named PagePaths:

spacer.png

 

Is this module really needed?

Link to comment
Share on other sites

PagePaths is part of the core, just not installed. In your ProcessWire backend go to Modules > Core and install "Page Paths" module from the list.

@Robin S I guess your module could install Page Paths automatically, no?

  • Like 2
Link to comment
Share on other sites

3 hours ago, bernhard said:

I guess your module could install Page Paths automatically, no?

I don't think it's good to automatically install modules that aren't bundled as part of the module repository. I believe PagePaths does impact some core functionality when installed (PageFinder results and possibly the $page->path/$page->url properties?) and the fact that it includes a feature to manually rebuild the paths table makes me think that it can potentially get out of sync with the page structure. So I think users need to consciously decide to install it if they want to use the Verify Links module.

I've updated the readme to mention the required modules and that they are core modules.

  • Like 2
Link to comment
Share on other sites

Thanks! I was now able to install it. It seems it only checks textareas, which are not multilangual.

I created two fields, one Textarea/CKEditor, the other TextareaLanguage/CKEditor.

image.thumb.png.420ff8f4fee60bd78c7188c2ebcfd4c2.png

I added a template which just holds these two:

image.thumb.png.b7e9e20e62f5b18634d9713f9ad64a98.png

Added one link each (link text is the same as the href attribute):

image.png.2af28327827bed38566cd28f23f4a49d.png

 

But VerifyLinks only catches one of the links:

image.png.351cfe0280c8408812facf55d7e0c1a1.png

Database says it's the one from the non-multilangual field:

image.png.dcc0834968084c0bb30fb1cf8af3c13d.png

 

Link to comment
Share on other sites

v0.3.0 released, which adds some new features such as Custom Search Builder in the datatable, a new "Error responses only" view, and the ability to exclude links from this view by defining URL prefixes, to exclude domains known to give false-positive error responses. See the updated readme for more.

  • Like 2
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...