• We do a lot of redesigns that change some URL structures and while we try to be good, some URLs slip through the crack. It’s nice to to have 404 detection right in this plugin, but I think there are some things that could make it even better.

    First off, I noticed that this plugin counts the same 404’s as separate entries. So you see multiple 404’s for the same URL. I think a much better approach would be to tally up the same 404’s but present them one 1 row. So you can see each URL, and in the details, show a tally of how many times that URL has been hit.

    To make this even more useful, it would be awesome to be able to sort or filter the 404s. I would love to see all the URLs in order of most popular to least, that way I can address the biggest issues first. I also get some 404’s from images/scripts/styles that are no longer relevant and it would be nice to hide those.

    Anyway, this is just a feature request ticket so if you think it’s good and worth building out, awesome! But if you think it’s not worth it, no worries.

    Thanks for a great plugin ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Stegosource

    (@stegosource)

    To follow up, here is some SQL I’ve used before to list the 404’s based on popularity:

    // Probably will need to change table prefix.
    SELECT url, COUNT(url) AS count FROM wp_redirection_404 GROUP BY url ORDER BY count DESC

    arend

    (@arenddeboer)

    This is exactly what I am looking for. Could we help in getting this into a future release?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Feature Request: Group 404’s and sort’ is closed to new replies.