djacouma wrote:
Is there a way to purge 4rss the feed import history that it uses as basis for evaluating duplicates? I deleted my first batch of feed based articles, and although when I post, it shows 17 articles being generated, there's nada showing up in my article manager.
In the database, delete everything from table jos_4rss_feeds_url where content_id points to non-existing records.
something like:
DELETE FROM jos_4rss_feeds_url WHERE content_id NOT IN
(SELECT jos_4rss_feeds_url.content_id FROM jos_4rss_feeds_url, jos_content WHERE jos_4rss_feeds_url.content_id = jos_content.id)
Test this before you run it, make backups
