Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter edrandall

    (@edrandall)

    Thank you Yannick, the “Re-import links” button worked exactly as you described, I don’t know why I didn’t find that before.
    All links are displaying as expected and I have managed to improve display much better than previously.

    One issue I have now is that I wanted to generate some missing thumbnails.
    I ticked “Give priority to images assigned to links if present” and pressed ‘Generate thumbnails and store locally” but it seems to have changed out all of my local thumbnail images (0 bytes files in uploads/link-library-images). The original thumbnails are still present but the references have all been updated to these empty files.

    Seems to be working, nothing at all in my error_log for 2 days.

    It’s the 404-redirected plugin, we’re running v.1.3.2 which is the latest I think. I just hacked that fix in to the installed copy of the file myself ??

    Me too, just noticed this in my error_log, once every day.

    The error is the SQL lines 401-405 of “404-redirected/includes/functions.php”, reads:

    401) //Find unused urls
    402) $query = "select id from " . $wpdb->prefix . "wbz404_redirects where status = " . $wpdb->escape(WBZ404_AUTO) . " status ";
    403) $query .= "timestamp <= " . $wpdb->escape($then) . " and id not in (";
    404) $query .= "select redirect_id from " . $wpdb->prefix . "wbz404_logs";
    405) $query .= ")";

    that line 402 should read:

    $query = "select id from " . $wpdb->prefix . "wbz404_redirects where status = " . $wpdb->escape(WBZ404_AUTO) . " AND ";

Viewing 4 replies - 1 through 4 (of 4 total)