• Greg

    (@indelg17)


    I am using a test site that is local but I want to adjust the look of my RSS feed Widget. I only want to adjust the line spacing to match the other boxes on the same level.

    If you go to https://www.sca-recovery.org you can see the feed in the lower right hand side. This is our live site. It looks good. But I have updated many things on our test site and removed an old plugin that used to handle our RSS feed. I replaced it with the Free version of RSS Agrigator. It works great but the spacing is a little off. The feed starts a little lower on the page and each line looks as if it is spaced 1.5 apart. I’d like it just single spaced. Can I adjust these formatting setting using RSS agrigator? If so, how?

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 16 total)
  • Plugin Support Hendra Setiawan

    (@hendcorp)

    Hi @indelg17

    Thank you for reaching out and sharing your experience with the free version of Aggregator—I’m glad to hear it’s working great for you on your test site!

    I appreciate you pointing out the live site at https://www.sca-recovery.org, where the feed in the lower right-hand side looks good. Since I can’t see the issue on the live version, I understand your concern about the line spacing being off on your local test site.

    The 1.5-line spacing you’re noticing might be due to your test site’s theme or CSS changes after removing the old plugin. To help me take a closer look and provide the best solution, could you please share a screenshot of the feed on your local test site?

    For now, you can try adding custom CSS via Appearance > Customize > Additional CSS in your WordPress dashboard. A starting point might be:

    li.wpra-item.feed-item {
    line-height: 1 !important;
    }

    You can adjust the line-height: 1 value (e.g., to 1.2 or 0.9) to fine-tune the spacing until it matches your other boxes perfectly. Test this on your local site and let me know how it goes.

    Once I have the screenshot, I can refine it further.

    Thread Starter Greg

    (@indelg17)

    I received your email. Thank you for your suggestions. I have physical files with the screenshots of my test environment. The testing site is not available on the internet. Can I send you the image file?

    Thanks

    Thread Starter Greg

    (@indelg17)

    Hi, I have installed RSS Aggregator on our site and it works fine. I just want to tweek the formatting a little to match the section right next to it. Mostly its the spacing that is off. Take a look at this link. The feed is in the lower right hand of the page.

    The feed starts a line below where the other sections start. ALso the spacing between each article is too big. I would like to tighten that up a bit. Is there any way I can adjust these things within RSS Aggregator? or CSS?

    Here is the link to my live site https://sca-recovery.org/WP/ It does look ok, but I want to make the spacing look a little different.

    Any help greatly appreciated.

    Thread Starter Greg

    (@indelg17)

    One other question. If a blog post is deleted on the feed site, it seems to remain on the feed displayed on sca-recovery.org. Is that by design or is their setting I can place that will remove deleted items from the feed? I say this because oonly certain posts on the blog site are deleted after one day because they are no longer relevant and we do not want them to continue to appear on the feed received on https://www.sca-recovery.org

    Plugin Support Hendra Setiawan

    (@hendcorp)

    Hi @indelg17

    Thanks for getting back to us! I’ve reviewed your website, and you can fix the styling using the CSS code below:

    li.wpra-item.feed-item {  
    line-height: 1.3;
    margin-bottom: 5px !important;
    }

    You can add this via Appearance > Customize > Additional CSS in your WordPress dashboard. Here’s a quick screenshot from my end.

    Also, regarding your second question, Aggregator imports feed items as a one-time process. While it continues fetching new items from the source, it does not update or remove existing ones if they change or are deleted on the original website. This means that once an item is imported, it remains in your database even if it no longer exists in the feed.

    However, you can remove imported items that no longer exist in the source feed by using a custom code snippet. The following snippet ensures that previously imported items are deleted each time the feed updates:

    add_action( 'wprss_fetch_single_feed_hook', 'wprss_delete_feed_items_of_feed_source', 9 );

    This will delete all imported content for the source and re-import the RSS feed from scratch each time it updates. As a result, any post that has been removed from the original feed will no longer appear on your site. You can add it to your website using the Code Snippets plugin.

    I hope it helps. Please let me know how that goes.

    Thread Starter Greg

    (@indelg17)

    Thanks for your reply. It has really been helpful and at first it seem to work like a charm. But for some reason around mid-day, items on our feed that should not disapear, actually do disapear. I am not sure why. If I go into RSS aggregator and do a fetch, that fixes the problem. But only temporarily.

    It seems something in the COde snippets is running mid-day and breaking the feed. Im trying to troubleshoot. Can you explain to me what the snippet you sent me is doing? Maybe ther is a way to tweek it so that this does not happen? Specifically, what does the (,9) represent in the snippet:

    add_action( ‘wprss_fetch_single_feed_hook’, ‘wprss_delete_feed_items_of_feed_source’, 9 );

    thanks for all your help!

    Plugin Support Hendra Setiawan

    (@hendcorp)

    Hi @indelg17

    You’re very welcome! I’m glad to hear the snippet initially worked, but I understand the concern about items disappearing unexpectedly. Let me clarify how the snippet works and what might be happening.

    The code:

    add_action( 'wprss_fetch_single_feed_hook', 'wprss_delete_feed_items_of_feed_source', 9 );

    attaches the function wprss_delete_feed_items_of_feed_source to the wprss_fetch_single_feed_hook, which runs whenever Aggregator fetches a feed. The number 9 is the priority level, determining when the function executes relative to other functions hooked to the same action. A lower number means it runs earlier in the process.

    In this case, every time a feed updates, the snippet deletes all previously imported items from that feed before fetching new ones. This ensures that only items currently in the source feed remain on your site.

    Possible Issue: If items that should stay on your site are disappearing at midday, it’s likely that something (such as cron job) is affecting how the feed updates. Since manually fetching the feed temporarily restores the missing items, the deletion may be happening at an unexpected time.

    To investigate further, please follow these steps:

    1. Install and activate the?WP Crontrol?plugin on your website.
    2. Navigate to?Tools > Cron Events.
    3. In the search box, enter “wprss_” and then click on the Search Hook Names button.
    4. Take a screenshot of the search results. Please send the screenshot to us for investigation purposes. You can share the screenshot using Snipboard.

    Thank you, and I look forward to hearing back from you soon.

    Thread Starter Greg

    (@indelg17)

    Thanks again. attached is the screenshot you requested

    Plugin Support Hendra Setiawan

    (@hendcorp)

    Hi @indelg17

    I appreciate you sharing the screenshot! Everything looks fine with your cron jobs, so the issue could be related to caching or an unexpected feed update.

    If the items disappear again, could you please take a screenshot of the Feed Items page (RSS Aggregator > Feed Items) right away and share it with us? Please also share your debug logs. This will give us more insights into what’s happening and whether the issue lies with the feed itself or something else.

    Thank you for your patience and cooperation. I look forward to hearing from you soon.

    Thread Starter Greg

    (@indelg17)

    After I noticed that certain feed items were not displaying on our site. I did look at the RRS Aggregator>Feed Items list. The two items that were missing were listed in the Feed Items section of Aggregator. That is why I could not understand what was going on. I did do a clear cache but that did not help. The only thing that helped was initiating a fetch.

    I will take more notice today. I think this usually happens mid-morning for some reason. After that it does not seem to happen till the next day. I will keep a look out for when it happens and share the information with you. Again, thanks for your assistance.

    Grge

    Plugin Support Hendra Setiawan

    (@hendcorp)

    Hi @indelg17

    Thanks for the update! Since the missing items were listed in the Feed Items section but didn’t appear on the site until a manual fetch, it’s possible that caching is playing a role.

    Just to confirm—when you cleared the cache, did you clear only your browser cache, or did you also clear your website’s cache? I noticed that your site is using WP Super Cache, so I’d recommend clearing both the browser cache and WP Super Cache to see if that resolves the issue.

    Thread Starter Greg

    (@indelg17)

    It did not happen yesterday but I noticed it at 3am, that it happend again. NOt sure exactly when. But this is what the site look like now. Only two posts instead of 5 posts.

    I checked in RSS Aggregator and The list feed looks normal:

    If I delete cache within WordPress (It does not work if I delete my browser cache). Everything looks good again:

    So it seems that clearing cache within WordPress does correct the issue. But why should I have to do that? Also, I am not always in a position to sign on to WordPress and clear the cache. Is there anything that can happen automatically? Yes I am running WP Super Cache. But I have never changed any settings, I am just using defaults.

    Thread Starter Greg

    (@indelg17)

    Im sorry but I am wrong. When I cleared the cache it updated the home page fine when I was in WP-Admin. But when I left wp-admin and went into the site from my browser the feeds did not show again. Now I have cleared cache at all points and nothing. I have no idea what is going on.

    Here is the Debug file (My apologies – I do not know how to attach a file) Eventually the feed came back (after I did a manual fetch) but it took over 5 minutes. Any idea why this happens? People look at this feed all the time and they get annoyed when its not available.

    2025-03-17 13:11:36 The SCAnner: Starting import for "The SCAnner"
    2025-03-17 13:11:36 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-17 13:11:36 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:11:39 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:11:42 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-17 13:11:42 The SCAnner: Item "March 17th Meditation: Self-Sabotage" already exists in the database. Reason: permalink
    2025-03-17 13:11:42 The SCAnner: Item "Frank T. My Story" already exists in the database. Reason: permalink
    2025-03-17 13:11:42 The SCAnner: Item "PLEASE HELP" already exists in the database. Reason: permalink
    2025-03-17 13:11:42 The SCAnner: 3 will be skipped
    2025-03-17 13:11:42 The SCAnner: Deleted the oldest 2 items
    2025-03-17 13:11:42 The SCAnner: Beginning import for item "March 18th Meditation: Taking Inventory"
    2025-03-17 13:11:42 The SCAnner: Hooks for
    wprss_insert_post_item_conditionals:
    2025-03-17 13:11:42 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:11:42 The SCAnner: Checking conditionals …
    2025-03-17 13:11:42 The SCAnner: Resuming insertion into DB
    2025-03-17 13:11:42 The SCAnner: Feed item "March 18th Meditation: Taking Inventory" date: 2025-03-17 14:09:56
    2025-03-17 13:11:42 The SCAnner: Date for "March 18th Meditation: Taking Inventory" will be 2025-03-17 14:09:56
    2025-03-17 13:11:43 The SCAnner: Item "March 18th Meditation: Taking Inventory" was inserted into DB, ID: 17303
    2025-03-17 13:11:43 The SCAnner: Inserted meta data for item #17303
    2025-03-17 13:11:43 The SCAnner: Finished import for item March 18th Meditation: Taking Inventory, ID 17303
    2025-03-17 13:11:43 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-17 13:11:43 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:11:43 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:11:43 The SCAnner: Checking conditionals …
    2025-03-17 13:11:43 The SCAnner: Resuming insertion into DB
    2025-03-17 13:11:43 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-17 13:11:43 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-17 13:11:43 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17304
    2025-03-17 13:11:43 The SCAnner: Inserted meta data for item #17304
    2025-03-17 13:11:43 The SCAnner: Finished import for item New SCA Meeting, ID 17304
    2025-03-17 13:11:43 The SCAnner: Import completed in 6.56 seconds!
    2025-03-17 13:11:43 Beginning import for all feed sources
    2025-03-17 13:12:06 The SCAnner: Starting import for "The SCAnner"
    2025-03-17 13:12:06 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-17 13:12:06 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:12:09 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:12:11 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-17 13:12:11 The SCAnner: Item "March 18th Meditation: Taking Inventory" already exists in the database. Reason: permalink
    2025-03-17 13:12:11 The SCAnner: Item "March 17th Meditation: Self-Sabotage" already exists in the database. Reason: permalink
    2025-03-17 13:12:11 The SCAnner: Item "New SCA Meeting" already exists in the database. Reason: permalink
    2025-03-17 13:12:11 The SCAnner: 3 will be skipped
    2025-03-17 13:12:11 The SCAnner: Deleted the oldest 2 items
    2025-03-17 13:12:11 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-17 13:12:11 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:12:11 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:12:11 The SCAnner: Checking conditionals …
    2025-03-17 13:12:11 The SCAnner: Resuming insertion into DB
    2025-03-17 13:12:11 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-17 13:12:11 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-17 13:12:11 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17305
    2025-03-17 13:12:11 The SCAnner: Inserted meta data for item #17305
    2025-03-17 13:12:11 The SCAnner: Finished import for item Frank T. My Story, ID 17305
    2025-03-17 13:12:11 The SCAnner: Beginning import for item "PLEASE HELP"
    2025-03-17 13:12:11 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:12:11 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:12:11 The SCAnner: Checking conditionals …
    2025-03-17 13:12:11 The SCAnner: Resuming insertion into DB
    2025-03-17 13:12:11 The SCAnner: Feed item "PLEASE HELP" date: 2025-02-12 16:18:16
    2025-03-17 13:12:11 The SCAnner: Date for "PLEASE HELP" will be 2025-02-12 16:18:16
    2025-03-17 13:12:11 The SCAnner: Item "PLEASE HELP" was inserted into DB, ID: 17306
    2025-03-17 13:12:11 The SCAnner: Inserted meta data for item #17306
    2025-03-17 13:12:11 The SCAnner: Finished import for item PLEASE HELP, ID 17306
    2025-03-17 13:12:11 The SCAnner: Import completed in 5.08 seconds!
    2025-03-17 13:22:21 The SCAnner: Starting import for "The SCAnner"
    2025-03-17 13:22:21 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-17 13:22:21 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:22:25 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:22:27 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-17 13:22:27 The SCAnner: Beginning import for item "March 18th Meditation: Taking Inventory"
    2025-03-17 13:22:27 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:22:27 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:22:27 The SCAnner: Checking conditionals …
    2025-03-17 13:22:27 The SCAnner: Resuming insertion into DB
    2025-03-17 13:22:27 The SCAnner: Feed item "March 18th Meditation: Taking Inventory" date: 2025-03-17 14:09:56
    2025-03-17 13:22:27 The SCAnner: Date for "March 18th Meditation: Taking Inventory" will be 2025-03-17 14:09:56
    2025-03-17 13:22:27 The SCAnner: Item "March 18th Meditation: Taking Inventory" was inserted into DB, ID: 17310
    2025-03-17 13:22:27 The SCAnner: Inserted meta data for item #17310
    2025-03-17 13:22:27 The SCAnner: Finished import for item March 18th Meditation: Taking Inventory, ID 17310
    2025-03-17 13:22:27 The SCAnner: Beginning import for item "March 17th Meditation: Self-Sabotage"
    2025-03-17 13:22:27 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:22:27 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:22:27 The SCAnner: Checking conditionals …
    2025-03-17 13:22:27 The SCAnner: Resuming insertion into DB
    2025-03-17 13:22:27 The SCAnner: Feed item "March 17th Meditation: Self-Sabotage" date: 2025-03-16 14:18:08
    2025-03-17 13:22:27 The SCAnner: Date for "March 17th Meditation: Self-Sabotage" will be 2025-03-16 14:18:08
    2025-03-17 13:22:28 The SCAnner: Item "March 17th Meditation: Self-Sabotage" was inserted into DB, ID: 17311
    2025-03-17 13:22:28 The SCAnner: Inserted meta data for item #17311
    2025-03-17 13:22:28 The SCAnner: Finished import for item March 17th Meditation: Self-Sabotage, ID 17311
    2025-03-17 13:22:28 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-17 13:22:28 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:22:28 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:22:28 The SCAnner: Checking conditionals …
    2025-03-17 13:22:28 The SCAnner: Resuming insertion into DB
    2025-03-17 13:22:28 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-17 13:22:28 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-17 13:22:28 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17312
    2025-03-17 13:22:28 The SCAnner: Inserted meta data for item #17312
    2025-03-17 13:22:28 The SCAnner: Finished import for item Frank T. My Story, ID 17312
    2025-03-17 13:22:28 The SCAnner: Beginning import for item "PLEASE HELP"
    2025-03-17 13:22:28 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:22:28 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:22:28 The SCAnner: Checking conditionals …
    2025-03-17 13:22:28 The SCAnner: Resuming insertion into DB
    2025-03-17 13:22:28 The SCAnner: Feed item "PLEASE HELP" date: 2025-02-12 16:18:16
    2025-03-17 13:22:28 The SCAnner: Date for "PLEASE HELP" will be 2025-02-12 16:18:16
    2025-03-17 13:22:28 The SCAnner: Item "PLEASE HELP" was inserted into DB, ID: 17313
    2025-03-17 13:22:28 The SCAnner: Inserted meta data for item #17313
    2025-03-17 13:22:28 The SCAnner: Finished import for item PLEASE HELP, ID 17313
    2025-03-17 13:22:28 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-17 13:22:28 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:22:28 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:22:28 The SCAnner: Checking conditionals …
    2025-03-17 13:22:28 The SCAnner: Resuming insertion into DB
    2025-03-17 13:22:28 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-17 13:22:28 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-17 13:22:28 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17314
    2025-03-17 13:22:28 The SCAnner: Inserted meta data for item #17314
    2025-03-17 13:22:28 The SCAnner: Finished import for item New SCA Meeting, ID 17314
    2025-03-17 13:22:28 The SCAnner: Import completed in 6.76 seconds!
    2025-03-17 13:34:20 Beginning import for all feed sources
    2025-03-17 13:34:34 The SCAnner: Starting import for "The SCAnner"
    2025-03-17 13:34:34 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-17 13:34:34 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:34:36 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 13:34:39 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-17 13:34:39 The SCAnner: Beginning import for item "March 18th Meditation: Taking Inventory"
    2025-03-17 13:34:39 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:34:39 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:34:39 The SCAnner: Checking conditionals …
    2025-03-17 13:34:39 The SCAnner: Resuming insertion into DB
    2025-03-17 13:34:39 The SCAnner: Feed item "March 18th Meditation: Taking Inventory" date: 2025-03-17 14:09:56
    2025-03-17 13:34:39 The SCAnner: Date for "March 18th Meditation: Taking Inventory" will be 2025-03-17 14:09:56
    2025-03-17 13:34:39 The SCAnner: Item "March 18th Meditation: Taking Inventory" was inserted into DB, ID: 17315
    2025-03-17 13:34:39 The SCAnner: Inserted meta data for item #17315
    2025-03-17 13:34:39 The SCAnner: Finished import for item March 18th Meditation: Taking Inventory, ID 17315
    2025-03-17 13:34:39 The SCAnner: Beginning import for item "March 17th Meditation: Self-Sabotage"
    2025-03-17 13:34:39 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:34:39 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:34:39 The SCAnner: Checking conditionals …
    2025-03-17 13:34:39 The SCAnner: Resuming insertion into DB
    2025-03-17 13:34:39 The SCAnner: Feed item "March 17th Meditation: Self-Sabotage" date: 2025-03-16 14:18:08
    2025-03-17 13:34:39 The SCAnner: Date for "March 17th Meditation: Self-Sabotage" will be 2025-03-16 14:18:08
    2025-03-17 13:34:39 The SCAnner: Item "March 17th Meditation: Self-Sabotage" was inserted into DB, ID: 17316
    2025-03-17 13:34:39 The SCAnner: Inserted meta data for item #17316
    2025-03-17 13:34:39 The SCAnner: Finished import for item March 17th Meditation: Self-Sabotage, ID 17316
    2025-03-17 13:34:39 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-17 13:34:39 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:34:39 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:34:39 The SCAnner: Checking conditionals …
    2025-03-17 13:34:39 The SCAnner: Resuming insertion into DB
    2025-03-17 13:34:39 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-17 13:34:39 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-17 13:34:39 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17317
    2025-03-17 13:34:39 The SCAnner: Inserted meta data for item #17317
    2025-03-17 13:34:39 The SCAnner: Finished import for item Frank T. My Story, ID 17317
    2025-03-17 13:34:39 The SCAnner: Beginning import for item "PLEASE HELP"
    2025-03-17 13:34:39 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:34:39 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:34:39 The SCAnner: Checking conditionals …
    2025-03-17 13:34:39 The SCAnner: Resuming insertion into DB
    2025-03-17 13:34:39 The SCAnner: Feed item "PLEASE HELP" date: 2025-02-12 16:18:16
    2025-03-17 13:34:39 The SCAnner: Date for "PLEASE HELP" will be 2025-02-12 16:18:16
    2025-03-17 13:34:39 The SCAnner: Item "PLEASE HELP" was inserted into DB, ID: 17318
    2025-03-17 13:34:39 The SCAnner: Inserted meta data for item #17318
    2025-03-17 13:34:39 The SCAnner: Finished import for item PLEASE HELP, ID 17318
    2025-03-17 13:34:39 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-17 13:34:39 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 13:34:39 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 13:34:39 The SCAnner: Checking conditionals …
    2025-03-17 13:34:39 The SCAnner: Resuming insertion into DB
    2025-03-17 13:34:39 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-17 13:34:39 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-17 13:34:39 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17319
    2025-03-17 13:34:39 The SCAnner: Inserted meta data for item #17319
    2025-03-17 13:34:39 The SCAnner: Finished import for item New SCA Meeting, ID 17319
    2025-03-17 13:34:39 The SCAnner: Import completed in 5.45 seconds!
    2025-03-17 14:10:42 Beginning import for all feed sources
    2025-03-17 14:18:21 The SCAnner: Starting import for "The SCAnner"
    2025-03-17 14:18:21 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-17 14:18:21 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 14:18:23 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 14:18:25 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-17 14:18:25 The SCAnner: Beginning import for item "March 18th Meditation: Taking Inventory"
    2025-03-17 14:18:25 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:18:25 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:18:25 The SCAnner: Checking conditionals …
    2025-03-17 14:18:25 The SCAnner: Resuming insertion into DB
    2025-03-17 14:18:25 The SCAnner: Feed item "March 18th Meditation: Taking Inventory" date: 2025-03-17 14:09:56
    2025-03-17 14:18:25 The SCAnner: Date for "March 18th Meditation: Taking Inventory" will be 2025-03-17 14:09:56
    2025-03-17 14:18:26 The SCAnner: Item "March 18th Meditation: Taking Inventory" was inserted into DB, ID: 17320
    2025-03-17 14:18:26 The SCAnner: Inserted meta data for item #17320
    2025-03-17 14:18:26 The SCAnner: Finished import for item March 18th Meditation: Taking Inventory, ID 17320
    2025-03-17 14:18:26 The SCAnner: Beginning import for item "March 17th Meditation: Self-Sabotage"
    2025-03-17 14:18:26 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:18:26 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:18:26 The SCAnner: Checking conditionals …
    2025-03-17 14:18:26 The SCAnner: Resuming insertion into DB
    2025-03-17 14:18:26 The SCAnner: Feed item "March 17th Meditation: Self-Sabotage" date: 2025-03-16 14:18:08
    2025-03-17 14:18:26 The SCAnner: Date for "March 17th Meditation: Self-Sabotage" will be 2025-03-16 14:18:08
    2025-03-17 14:18:26 The SCAnner: Item "March 17th Meditation: Self-Sabotage" was inserted into DB, ID: 17321
    2025-03-17 14:18:26 The SCAnner: Inserted meta data for item #17321
    2025-03-17 14:18:26 The SCAnner: Finished import for item March 17th Meditation: Self-Sabotage, ID 17321
    2025-03-17 14:18:26 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-17 14:18:26 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:18:26 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:18:26 The SCAnner: Checking conditionals …
    2025-03-17 14:18:26 The SCAnner: Resuming insertion into DB
    2025-03-17 14:18:26 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-17 14:18:26 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-17 14:18:26 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17322
    2025-03-17 14:18:26 The SCAnner: Inserted meta data for item #17322
    2025-03-17 14:18:26 The SCAnner: Finished import for item Frank T. My Story, ID 17322
    2025-03-17 14:18:26 The SCAnner: Beginning import for item "PLEASE HELP"
    2025-03-17 14:18:26 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:18:26 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:18:26 The SCAnner: Checking conditionals …
    2025-03-17 14:18:26 The SCAnner: Resuming insertion into DB
    2025-03-17 14:18:26 The SCAnner: Feed item "PLEASE HELP" date: 2025-02-12 16:18:16
    2025-03-17 14:18:26 The SCAnner: Date for "PLEASE HELP" will be 2025-02-12 16:18:16
    2025-03-17 14:18:26 The SCAnner: Item "PLEASE HELP" was inserted into DB, ID: 17323
    2025-03-17 14:18:26 The SCAnner: Inserted meta data for item #17323
    2025-03-17 14:18:26 The SCAnner: Finished import for item PLEASE HELP, ID 17323
    2025-03-17 14:18:26 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-17 14:18:26 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:18:26 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:18:26 The SCAnner: Checking conditionals …
    2025-03-17 14:18:26 The SCAnner: Resuming insertion into DB
    2025-03-17 14:18:26 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-17 14:18:26 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-17 14:18:26 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17324
    2025-03-17 14:18:26 The SCAnner: Inserted meta data for item #17324
    2025-03-17 14:18:26 The SCAnner: Finished import for item New SCA Meeting, ID 17324
    2025-03-17 14:18:26 The SCAnner: Import completed in 5.44 seconds!
    2025-03-17 14:39:14 Beginning import for all feed sources
    2025-03-17 14:39:38 The SCAnner: Starting import for "The SCAnner"
    2025-03-17 14:39:38 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-17 14:39:38 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 14:39:41 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-17 14:39:43 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-17 14:39:43 The SCAnner: Beginning import for item "March 18th Meditation: Taking Inventory"
    2025-03-17 14:39:43 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:39:43 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:39:43 The SCAnner: Checking conditionals …
    2025-03-17 14:39:43 The SCAnner: Resuming insertion into DB
    2025-03-17 14:39:43 The SCAnner: Feed item "March 18th Meditation: Taking Inventory" date: 2025-03-17 14:09:56
    2025-03-17 14:39:43 The SCAnner: Date for "March 18th Meditation: Taking Inventory" will be 2025-03-17 14:09:56
    2025-03-17 14:39:43 The SCAnner: Item "March 18th Meditation: Taking Inventory" was inserted into DB, ID: 17325
    2025-03-17 14:39:43 The SCAnner: Inserted meta data for item #17325
    2025-03-17 14:39:43 The SCAnner: Finished import for item March 18th Meditation: Taking Inventory, ID 17325
    2025-03-17 14:39:43 The SCAnner: Beginning import for item "March 17th Meditation: Self-Sabotage"
    2025-03-17 14:39:43 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:39:43 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:39:43 The SCAnner: Checking conditionals …
    2025-03-17 14:39:43 The SCAnner: Resuming insertion into DB
    2025-03-17 14:39:43 The SCAnner: Feed item "March 17th Meditation: Self-Sabotage" date: 2025-03-16 14:18:08
    2025-03-17 14:39:43 The SCAnner: Date for "March 17th Meditation: Self-Sabotage" will be 2025-03-16 14:18:08
    2025-03-17 14:39:43 The SCAnner: Item "March 17th Meditation: Self-Sabotage" was inserted into DB, ID: 17326
    2025-03-17 14:39:43 The SCAnner: Inserted meta data for item #17326
    2025-03-17 14:39:43 The SCAnner: Finished import for item March 17th Meditation: Self-Sabotage, ID 17326
    2025-03-17 14:39:43 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-17 14:39:43 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:39:43 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:39:43 The SCAnner: Checking conditionals …
    2025-03-17 14:39:43 The SCAnner: Resuming insertion into DB
    2025-03-17 14:39:43 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-17 14:39:43 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-17 14:39:43 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17327
    2025-03-17 14:39:43 The SCAnner: Inserted meta data for item #17327
    2025-03-17 14:39:43 The SCAnner: Finished import for item Frank T. My Story, ID 17327
    2025-03-17 14:39:43 The SCAnner: Beginning import for item "PLEASE HELP"
    2025-03-17 14:39:43 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:39:43 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:39:43 The SCAnner: Checking conditionals …
    2025-03-17 14:39:43 The SCAnner: Resuming insertion into DB
    2025-03-17 14:39:43 The SCAnner: Feed item "PLEASE HELP" date: 2025-02-12 16:18:16
    2025-03-17 14:39:43 The SCAnner: Date for "PLEASE HELP" will be 2025-02-12 16:18:16
    2025-03-17 14:39:43 The SCAnner: Item "PLEASE HELP" was inserted into DB, ID: 17328
    2025-03-17 14:39:43 The SCAnner: Inserted meta data for item #17328
    2025-03-17 14:39:43 The SCAnner: Finished import for item PLEASE HELP, ID 17328
    2025-03-17 14:39:43 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-17 14:39:43 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-17 14:39:43 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-17 14:39:43 The SCAnner: Checking conditionals …
    2025-03-17 14:39:43 The SCAnner: Resuming insertion into DB
    2025-03-17 14:39:43 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-17 14:39:43 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-17 14:39:43 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17329
    2025-03-17 14:39:43 The SCAnner: Inserted meta data for item #17329
    2025-03-17 14:39:43 The SCAnner: Finished import for item New SCA Meeting, ID 17329
    2025-03-17 14:39:43 The SCAnner: Import completed in 5.37 seconds!
    2025-03-20 19:53:57 Beginning import for all feed sources
    2025-03-20 20:21:17 The SCAnner: Starting import for "The SCAnner"
    2025-03-20 20:21:17 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-20 20:21:17 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:21:20 The SCAnner: Starting import for "The SCAnner"
    2025-03-20 20:21:20 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-20 20:21:20 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:21:20 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:21:23 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:21:23 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-20 20:21:23 The SCAnner: Beginning import for item "March 21st Meditation: Telephone vs. Texting"
    2025-03-20 20:21:23 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:23 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:23 The SCAnner: Checking conditionals …
    2025-03-20 20:21:23 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:23 The SCAnner: Feed item "March 21st Meditation: Telephone vs. Texting" date: 2025-03-20 13:45:46
    2025-03-20 20:21:23 The SCAnner: Date for "March 21st Meditation: Telephone vs. Texting" will be 2025-03-20 13:45:46
    2025-03-20 20:21:23 The SCAnner: Item "March 21st Meditation: Telephone vs. Texting" was inserted into DB, ID: 17330
    2025-03-20 20:21:23 The SCAnner: Inserted meta data for item #17330
    2025-03-20 20:21:23 The SCAnner: Finished import for item March 21st Meditation: Telephone vs. Texting, ID 17330
    2025-03-20 20:21:23 The SCAnner: Beginning import for item "March 20th Meditation: Trapped in Cybersex"
    2025-03-20 20:21:23 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:23 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:23 The SCAnner: Checking conditionals …
    2025-03-20 20:21:23 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:23 The SCAnner: Feed item "March 20th Meditation: Trapped in Cybersex" date: 2025-03-19 13:24:40
    2025-03-20 20:21:23 The SCAnner: Date for "March 20th Meditation: Trapped in Cybersex" will be 2025-03-19 13:24:40
    2025-03-20 20:21:23 The SCAnner: Item "March 20th Meditation: Trapped in Cybersex" was inserted into DB, ID: 17331
    2025-03-20 20:21:24 The SCAnner: Inserted meta data for item #17331
    2025-03-20 20:21:24 The SCAnner: Finished import for item March 20th Meditation: Trapped in Cybersex, ID 17331
    2025-03-20 20:21:24 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-20 20:21:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:24 The SCAnner: Checking conditionals …
    2025-03-20 20:21:24 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:24 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-20 20:21:24 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-20 20:21:24 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17332
    2025-03-20 20:21:24 The SCAnner: Inserted meta data for item #17332
    2025-03-20 20:21:24 The SCAnner: Finished import for item Frank T. My Story, ID 17332
    2025-03-20 20:21:24 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-20 20:21:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:24 The SCAnner: Checking conditionals …
    2025-03-20 20:21:24 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:24 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-20 20:21:24 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-20 20:21:24 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17333
    2025-03-20 20:21:24 The SCAnner: Inserted meta data for item #17333
    2025-03-20 20:21:24 The SCAnner: Finished import for item New SCA Meeting, ID 17333
    2025-03-20 20:21:24 The SCAnner: Beginning import for item "What really causes Addiction?"
    2025-03-20 20:21:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:24 The SCAnner: Checking conditionals …
    2025-03-20 20:21:24 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:24 The SCAnner: Feed item "What really causes Addiction?" date: 2025-01-16 06:06:41
    2025-03-20 20:21:24 The SCAnner: Date for "What really causes Addiction?" will be 2025-01-16 06:06:41
    2025-03-20 20:21:24 The SCAnner: Item "What really causes Addiction?" was inserted into DB, ID: 17334
    2025-03-20 20:21:24 The SCAnner: Inserted meta data for item #17334
    2025-03-20 20:21:24 The SCAnner: Finished import for item What really causes Addiction?, ID 17334
    2025-03-20 20:21:24 The SCAnner: Import completed in 6.76 seconds!
    2025-03-20 20:21:25 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-20 20:21:25 The SCAnner: Item "March 21st Meditation: Telephone vs. Texting" already exists in the database. Reason: permalink
    2025-03-20 20:21:25 The SCAnner: Item "March 20th Meditation: Trapped in Cybersex" already exists in the database. Reason: permalink
    2025-03-20 20:21:25 The SCAnner: Item "Frank T. My Story" already exists in the database. Reason: permalink
    2025-03-20 20:21:25 The SCAnner: Item "New SCA Meeting" already exists in the database. Reason: permalink
    2025-03-20 20:21:25 The SCAnner: Item "What really causes Addiction?" already exists in the database. Reason: permalink
    2025-03-20 20:21:25 The SCAnner: 5 will be skipped
    2025-03-20 20:21:25 The SCAnner: Import completed in 5.23 seconds!
    2025-03-20 20:21:25 Beginning import for all feed sources
    2025-03-20 20:21:48 The SCAnner: Starting import for "The SCAnner"
    2025-03-20 20:21:48 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-20 20:21:48 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:21:51 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:21:53 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-20 20:21:54 The SCAnner: Beginning import for item "March 21st Meditation: Telephone vs. Texting"
    2025-03-20 20:21:54 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:54 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:54 The SCAnner: Checking conditionals …
    2025-03-20 20:21:54 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:54 The SCAnner: Feed item "March 21st Meditation: Telephone vs. Texting" date: 2025-03-20 13:45:46
    2025-03-20 20:21:54 The SCAnner: Date for "March 21st Meditation: Telephone vs. Texting" will be 2025-03-20 13:45:46
    2025-03-20 20:21:54 The SCAnner: Item "March 21st Meditation: Telephone vs. Texting" was inserted into DB, ID: 17335
    2025-03-20 20:21:54 The SCAnner: Inserted meta data for item #17335
    2025-03-20 20:21:54 The SCAnner: Finished import for item March 21st Meditation: Telephone vs. Texting, ID 17335
    2025-03-20 20:21:54 The SCAnner: Beginning import for item "March 20th Meditation: Trapped in Cybersex"
    2025-03-20 20:21:54 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:54 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:54 The SCAnner: Checking conditionals …
    2025-03-20 20:21:54 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:54 The SCAnner: Feed item "March 20th Meditation: Trapped in Cybersex" date: 2025-03-19 13:24:40
    2025-03-20 20:21:54 The SCAnner: Date for "March 20th Meditation: Trapped in Cybersex" will be 2025-03-19 13:24:40
    2025-03-20 20:21:54 The SCAnner: Item "March 20th Meditation: Trapped in Cybersex" was inserted into DB, ID: 17336
    2025-03-20 20:21:54 The SCAnner: Inserted meta data for item #17336
    2025-03-20 20:21:54 The SCAnner: Finished import for item March 20th Meditation: Trapped in Cybersex, ID 17336
    2025-03-20 20:21:54 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-20 20:21:54 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:54 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:54 The SCAnner: Checking conditionals …
    2025-03-20 20:21:54 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:54 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-20 20:21:54 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-20 20:21:54 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17337
    2025-03-20 20:21:54 The SCAnner: Inserted meta data for item #17337
    2025-03-20 20:21:54 The SCAnner: Finished import for item Frank T. My Story, ID 17337
    2025-03-20 20:21:54 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-20 20:21:54 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:54 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:54 The SCAnner: Checking conditionals …
    2025-03-20 20:21:54 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:54 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-20 20:21:54 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-20 20:21:54 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17338
    2025-03-20 20:21:54 The SCAnner: Inserted meta data for item #17338
    2025-03-20 20:21:54 The SCAnner: Finished import for item New SCA Meeting, ID 17338
    2025-03-20 20:21:54 The SCAnner: Beginning import for item "What really causes Addiction?"
    2025-03-20 20:21:54 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:21:54 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:21:54 The SCAnner: Checking conditionals …
    2025-03-20 20:21:54 The SCAnner: Resuming insertion into DB
    2025-03-20 20:21:54 The SCAnner: Feed item "What really causes Addiction?" date: 2025-01-16 06:06:41
    2025-03-20 20:21:54 The SCAnner: Date for "What really causes Addiction?" will be 2025-01-16 06:06:41
    2025-03-20 20:21:54 The SCAnner: Item "What really causes Addiction?" was inserted into DB, ID: 17339
    2025-03-20 20:21:54 The SCAnner: Inserted meta data for item #17339
    2025-03-20 20:21:54 The SCAnner: Finished import for item What really causes Addiction?, ID 17339
    2025-03-20 20:21:54 The SCAnner: Import completed in 5.83 seconds!
    2025-03-20 20:34:53 Beginning import for all feed sources
    2025-03-20 20:35:29 The SCAnner: Starting import for "The SCAnner"
    2025-03-20 20:35:29 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-20 20:35:29 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:35:31 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-20 20:35:33 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-20 20:35:33 The SCAnner: Beginning import for item "March 21st Meditation: Telephone vs. Texting"
    2025-03-20 20:35:33 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:35:33 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:35:33 The SCAnner: Checking conditionals …
    2025-03-20 20:35:33 The SCAnner: Resuming insertion into DB
    2025-03-20 20:35:33 The SCAnner: Feed item "March 21st Meditation: Telephone vs. Texting" date: 2025-03-20 13:45:46
    2025-03-20 20:35:33 The SCAnner: Date for "March 21st Meditation: Telephone vs. Texting" will be 2025-03-20 13:45:46
    2025-03-20 20:35:34 The SCAnner: Item "March 21st Meditation: Telephone vs. Texting" was inserted into DB, ID: 17341
    2025-03-20 20:35:34 The SCAnner: Inserted meta data for item #17341
    2025-03-20 20:35:34 The SCAnner: Finished import for item March 21st Meditation: Telephone vs. Texting, ID 17341
    2025-03-20 20:35:34 The SCAnner: Beginning import for item "March 20th Meditation: Trapped in Cybersex"
    2025-03-20 20:35:34 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:35:34 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:35:34 The SCAnner: Checking conditionals …
    2025-03-20 20:35:34 The SCAnner: Resuming insertion into DB
    2025-03-20 20:35:34 The SCAnner: Feed item "March 20th Meditation: Trapped in Cybersex" date: 2025-03-19 13:24:40
    2025-03-20 20:35:34 The SCAnner: Date for "March 20th Meditation: Trapped in Cybersex" will be 2025-03-19 13:24:40
    2025-03-20 20:35:34 The SCAnner: Item "March 20th Meditation: Trapped in Cybersex" was inserted into DB, ID: 17342
    2025-03-20 20:35:34 The SCAnner: Inserted meta data for item #17342
    2025-03-20 20:35:34 The SCAnner: Finished import for item March 20th Meditation: Trapped in Cybersex, ID 17342
    2025-03-20 20:35:34 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-20 20:35:34 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:35:34 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:35:34 The SCAnner: Checking conditionals …
    2025-03-20 20:35:34 The SCAnner: Resuming insertion into DB
    2025-03-20 20:35:34 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-20 20:35:34 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-20 20:35:34 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17343
    2025-03-20 20:35:34 The SCAnner: Inserted meta data for item #17343
    2025-03-20 20:35:34 The SCAnner: Finished import for item Frank T. My Story, ID 17343
    2025-03-20 20:35:34 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-20 20:35:34 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:35:34 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:35:34 The SCAnner: Checking conditionals …
    2025-03-20 20:35:34 The SCAnner: Resuming insertion into DB
    2025-03-20 20:35:34 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-20 20:35:34 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-20 20:35:34 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17344
    2025-03-20 20:35:34 The SCAnner: Inserted meta data for item #17344
    2025-03-20 20:35:34 The SCAnner: Finished import for item New SCA Meeting, ID 17344
    2025-03-20 20:35:34 The SCAnner: Beginning import for item "What really causes Addiction?"
    2025-03-20 20:35:34 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-20 20:35:34 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-20 20:35:34 The SCAnner: Checking conditionals …
    2025-03-20 20:35:34 The SCAnner: Resuming insertion into DB
    2025-03-20 20:35:34 The SCAnner: Feed item "What really causes Addiction?" date: 2025-01-16 06:06:41
    2025-03-20 20:35:34 The SCAnner: Date for "What really causes Addiction?" will be 2025-01-16 06:06:41
    2025-03-20 20:35:34 The SCAnner: Item "What really causes Addiction?" was inserted into DB, ID: 17345
    2025-03-20 20:35:34 The SCAnner: Inserted meta data for item #17345
    2025-03-20 20:35:34 The SCAnner: Finished import for item What really causes Addiction?, ID 17345
    2025-03-20 20:35:34 The SCAnner: Import completed in 5.27 seconds!
    2025-03-21 03:23:16 Beginning import for all feed sources
    2025-03-21 03:23:46 The SCAnner: Starting import for "The SCAnner"
    2025-03-21 03:23:46 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-21 03:23:46 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-21 03:23:49 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-21 03:23:52 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-21 03:23:52 The SCAnner: Beginning import for item "March 21st Meditation: Telephone vs. Texting"
    2025-03-21 03:23:52 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:23:52 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:23:52 The SCAnner: Checking conditionals …
    2025-03-21 03:23:52 The SCAnner: Resuming insertion into DB
    2025-03-21 03:23:52 The SCAnner: Feed item "March 21st Meditation: Telephone vs. Texting" date: 2025-03-20 13:45:46
    2025-03-21 03:23:52 The SCAnner: Date for "March 21st Meditation: Telephone vs. Texting" will be 2025-03-20 13:45:46
    2025-03-21 03:23:52 The SCAnner: Item "March 21st Meditation: Telephone vs. Texting" was inserted into DB, ID: 17346
    2025-03-21 03:23:52 The SCAnner: Inserted meta data for item #17346
    2025-03-21 03:23:52 The SCAnner: Finished import for item March 21st Meditation: Telephone vs. Texting, ID 17346
    2025-03-21 03:23:52 The SCAnner: Beginning import for item "March 20th Meditation: Trapped in Cybersex"
    2025-03-21 03:23:52 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:23:52 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:23:52 The SCAnner: Checking conditionals …
    2025-03-21 03:23:52 The SCAnner: Resuming insertion into DB
    2025-03-21 03:23:52 The SCAnner: Feed item "March 20th Meditation: Trapped in Cybersex" date: 2025-03-19 13:24:40
    2025-03-21 03:23:52 The SCAnner: Date for "March 20th Meditation: Trapped in Cybersex" will be 2025-03-19 13:24:40
    2025-03-21 03:23:52 The SCAnner: Item "March 20th Meditation: Trapped in Cybersex" was inserted into DB, ID: 17347
    2025-03-21 03:23:52 The SCAnner: Inserted meta data for item #17347
    2025-03-21 03:23:52 The SCAnner: Finished import for item March 20th Meditation: Trapped in Cybersex, ID 17347
    2025-03-21 03:23:52 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-21 03:23:52 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:23:52 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:23:52 The SCAnner: Checking conditionals …
    2025-03-21 03:23:52 The SCAnner: Resuming insertion into DB
    2025-03-21 03:23:52 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-21 03:23:52 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-21 03:23:52 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17348
    2025-03-21 03:23:52 The SCAnner: Inserted meta data for item #17348
    2025-03-21 03:23:52 The SCAnner: Finished import for item Frank T. My Story, ID 17348
    2025-03-21 03:23:52 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-21 03:23:52 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:23:52 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:23:52 The SCAnner: Checking conditionals …
    2025-03-21 03:23:52 The SCAnner: Resuming insertion into DB
    2025-03-21 03:23:52 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-21 03:23:52 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-21 03:23:52 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17349
    2025-03-21 03:23:52 The SCAnner: Inserted meta data for item #17349
    2025-03-21 03:23:52 The SCAnner: Finished import for item New SCA Meeting, ID 17349
    2025-03-21 03:23:52 The SCAnner: Beginning import for item "What really causes Addiction?"
    2025-03-21 03:23:52 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:23:52 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:23:52 The SCAnner: Checking conditionals …
    2025-03-21 03:23:52 The SCAnner: Resuming insertion into DB
    2025-03-21 03:23:52 The SCAnner: Feed item "What really causes Addiction?" date: 2025-01-16 06:06:41
    2025-03-21 03:23:52 The SCAnner: Date for "What really causes Addiction?" will be 2025-01-16 06:06:41
    2025-03-21 03:23:52 The SCAnner: Item "What really causes Addiction?" was inserted into DB, ID: 17350
    2025-03-21 03:23:53 The SCAnner: Inserted meta data for item #17350
    2025-03-21 03:23:53 The SCAnner: Finished import for item What really causes Addiction?, ID 17350
    2025-03-21 03:23:53 The SCAnner: Import completed in 6.40 seconds!
    2025-03-21 03:25:19 The SCAnner: Starting import for "The SCAnner"
    2025-03-21 03:25:19 The SCAnner: Feed source URL: https://www.scanneronline.org/feed
    2025-03-21 03:25:19 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-21 03:25:21 Converted IDNA URL: https://www.scanneronline.org/feed?#
    2025-03-21 03:25:24 The SCAnner: 10 items in the feed, 5 items after applying limit
    2025-03-21 03:25:24 The SCAnner: Beginning import for item "March 21st Meditation: Telephone vs. Texting"
    2025-03-21 03:25:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:25:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:25:24 The SCAnner: Checking conditionals …
    2025-03-21 03:25:24 The SCAnner: Resuming insertion into DB
    2025-03-21 03:25:24 The SCAnner: Feed item "March 21st Meditation: Telephone vs. Texting" date: 2025-03-20 13:45:46
    2025-03-21 03:25:24 The SCAnner: Date for "March 21st Meditation: Telephone vs. Texting" will be 2025-03-20 13:45:46
    2025-03-21 03:25:24 The SCAnner: Item "March 21st Meditation: Telephone vs. Texting" was inserted into DB, ID: 17351
    2025-03-21 03:25:24 The SCAnner: Inserted meta data for item #17351
    2025-03-21 03:25:24 The SCAnner: Finished import for item March 21st Meditation: Telephone vs. Texting, ID 17351
    2025-03-21 03:25:24 The SCAnner: Beginning import for item "March 20th Meditation: Trapped in Cybersex"
    2025-03-21 03:25:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:25:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:25:24 The SCAnner: Checking conditionals …
    2025-03-21 03:25:24 The SCAnner: Resuming insertion into DB
    2025-03-21 03:25:24 The SCAnner: Feed item "March 20th Meditation: Trapped in Cybersex" date: 2025-03-19 13:24:40
    2025-03-21 03:25:24 The SCAnner: Date for "March 20th Meditation: Trapped in Cybersex" will be 2025-03-19 13:24:40
    2025-03-21 03:25:24 The SCAnner: Item "March 20th Meditation: Trapped in Cybersex" was inserted into DB, ID: 17352
    2025-03-21 03:25:24 The SCAnner: Inserted meta data for item #17352
    2025-03-21 03:25:24 The SCAnner: Finished import for item March 20th Meditation: Trapped in Cybersex, ID 17352
    2025-03-21 03:25:24 The SCAnner: Beginning import for item "Frank T. My Story"
    2025-03-21 03:25:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:25:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:25:24 The SCAnner: Checking conditionals …
    2025-03-21 03:25:24 The SCAnner: Resuming insertion into DB
    2025-03-21 03:25:24 The SCAnner: Feed item "Frank T. My Story" date: 2025-03-01 07:31:12
    2025-03-21 03:25:24 The SCAnner: Date for "Frank T. My Story" will be 2025-03-01 07:31:12
    2025-03-21 03:25:24 The SCAnner: Item "Frank T. My Story" was inserted into DB, ID: 17353
    2025-03-21 03:25:24 The SCAnner: Inserted meta data for item #17353
    2025-03-21 03:25:24 The SCAnner: Finished import for item Frank T. My Story, ID 17353
    2025-03-21 03:25:24 The SCAnner: Beginning import for item "New SCA Meeting"
    2025-03-21 03:25:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:25:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:25:24 The SCAnner: Checking conditionals …
    2025-03-21 03:25:24 The SCAnner: Resuming insertion into DB
    2025-03-21 03:25:24 The SCAnner: Feed item "New SCA Meeting" date: 2025-02-02 19:40:15
    2025-03-21 03:25:24 The SCAnner: Date for "New SCA Meeting" will be 2025-02-02 19:40:15
    2025-03-21 03:25:24 The SCAnner: Item "New SCA Meeting" was inserted into DB, ID: 17354
    2025-03-21 03:25:24 The SCAnner: Inserted meta data for item #17354
    2025-03-21 03:25:24 The SCAnner: Finished import for item New SCA Meeting, ID 17354
    2025-03-21 03:25:24 The SCAnner: Beginning import for item "What really causes Addiction?"
    2025-03-21 03:25:24 The SCAnner: Hooks for wprss_insert_post_item_conditionals:
    2025-03-21 03:25:24 The SCAnner: -> wprss_check_feed_item_date_on_import()
    2025-03-21 03:25:25 The SCAnner: Checking conditionals …
    2025-03-21 03:25:25 The SCAnner: Resuming insertion into DB
    2025-03-21 03:25:25 The SCAnner: Feed item "What really causes Addiction?" date: 2025-01-16 06:06:41
    2025-03-21 03:25:25 The SCAnner: Date for "What really causes Addiction?" will be 2025-01-16 06:06:41
    2025-03-21 03:25:25 The SCAnner: Item "What really causes Addiction?" was inserted into DB, ID: 17355
    2025-03-21 03:25:25 The SCAnner: Inserted meta data for item #17355
    2025-03-21 03:25:25 The SCAnner: Finished import for item What really causes Addiction?, ID 17355
    2025-03-21 03:25:25 The SCAnner: Import completed in 5.41 seconds!

    Plugin Support Hendra Setiawan

    (@hendcorp)

    Hi @indelg17

    Thanks for getting back to us! Since you’re using WP Super Cache, it works by storing a static version of your pages to make your site load faster. However, if your site has dynamic content—like an RSS feed that updates frequently—the cached version might not show the latest updates until the cache is cleared or expires.

    That’s why clearing the cache fixes the issue: it forces WordPress to refresh the page with the most current content. With the default settings in WP Super Cache, it’s likely that the cache isn’t automatically updating when new content (like feed items) is added, which is why you’ve had to step in manually.

    There are ways to make this process automatic so you don’t have to keep clearing the cache yourself. Since you’re using WP Super Cache with its default settings, we can tweak a few options to better handle your dynamic content. Here’s how you can set it up:

    1. Adjust Cache Expiration Time: In the Advanced tab of WP Super Cache settings, find the “Cache Timeout” field. By default, it might be set to a long time (like 3600 seconds, or 1 hour). Change it to something shorter, like 600 seconds (10 minutes), depending on how often your feed updates, then click the Change Expiration button. A shorter timeout means the cache refreshes more often, so outdated content doesn’t stick around as long.
    2. Enabling the “Extra homepage checks” option: In the Advanced tab of WP Super Cache settings, find the “Extra homepage checks” checkbox, and enable it. Since your homepage includes an RSS feed, enabling this option ensures visitors always see the most up-to-date content.

    Thanks for your patience. I’m confident we can make this automatic for you. Please let me know how these tweaks work or if you need more help. I’m here to assist!

    Thread Starter Greg

    (@indelg17)

    Thanks! I already had the Cache Execution time at 600 seconds, but I did not have the Extra homepage checks turned on. I went ahead and turned that on. Let’s see how it goes. But what is so confusing to me is that I am not just seeing data that is not refreshed but actually losing feed posts that I once had. It just seems strange to me what is happening. I guess I don’t understand exactly how caching works.

    But thanks for your help. Maybe this setting change will make the difference.

    Greg

Viewing 15 replies - 1 through 15 (of 16 total)
  • You must be logged in to reply to this topic.