• hugoa44

    (@hugoa44)


    Hello, is it possible to rebuild the cache of a feed, without going through the administration. With a curl, or a hook.
    Thank you for your help

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

    (@emielb)

    I’m exactly looking for a solution like that. Following this topic.

    Same request as after a while, the images are no more displayed but clearing the cache solves the problem.

    Hello,

    I have same problem.
    Can you help me ?

    Thanks

    I have made a temporary solution by using a scheduled task on my computer that opens this page in Chrome everyday: https://www.website.com/wp-admin/admin.php?page=flow-flow-admin

    Then with the Chrome plugin Tampermonkey it automatically executes the Rebuild feed action (and closes the window after 10s):

    (function() {
        'use strict';
    
        setTimeout(function(){
            document.querySelector("tr[data-network='facebook'] .feed-dropdown-menu li[data-action='cache']").click();
        }, 2000);
        setTimeout(function(){
            window.close();
        }, 10000);
    })();

    The match to execute this script in Tampermonkey is:
    // @match */wp-admin/admin.php?page=flow-flow-admin

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Rebuild feed’s cache’ is closed to new replies.